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

7 lines
64 B
C++

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