CMake/Source/Checks/cm_cxx_unique_ptr.cxx
Brad King aa50cdac43 Check for availability of unique_ptr and make_unique when building CMake
Some code paths may find these useful if available.
2016-09-16 13:22:10 -04:00

7 lines
84 B
C++

#include <memory>
int main()
{
std::unique_ptr<int> u(new int(0));
return *u;
}