https://github.com/Kitware/CMake
Raw File
Tip revision: ffff99c58e00bcf068c59cadba0706eb5f342124 authored by Brad King on 07 October 2013, 12:28:26 UTC
CMake 2.8.12
Tip revision: ffff99c
TestForSTDNamespace.cxx
#include <list>
int main(int, char*[])
{
  std::list<int>();
  return 0;
}
back to top