1
0
Fork 0
arangodb/cmake/CheckCXX11Features/cxx11-test-weak_ptr.cpp

7 lines
71 B
C++

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