https://github.com/Kitware/CMake
Raw File
Tip revision: c67d55b2e7e122bb869fe34f5da03785a4f45121 authored by Bill Hoffman on 02 May 2006, 02:40:17 UTC
ENH: try again
Tip revision: c67d55b
TestForSTDNamespace.cxx
#include <list>
int main(int, char*[])
{ 
  std::list<int>();
  return 0;
}
back to top