https://github.com/Kitware/CMake
Raw File
Tip revision: c5541cf0da1093635fea7da5a40e64e481b5477e authored by Brad King on 09 March 2018, 13:33:11 UTC
CMake 3.11.0-rc3
Tip revision: c5541cf
TestForSTDNamespace.cxx
#include <list>
int main(int, char* [])
{
  std::list<int>();
  return 0;
}
back to top