polyvox/cmake/Modules/CheckCXX11Features/cxx11-test-shared_ptr.cpp
Matt Williams 9f5fe452c9 Give shared_ptr the same treatment.
Here I have defined my own test for the feature. It's not an extensive test
but it checks for the presence of the class.
2012-11-23 15:41:27 +00:00

8 lines
73 B
C++

#include <memory>
int main()
{
std::shared_ptr<int> test;
return 0;
}