opencv/cmake/checks/atomic_check.cpp
2019-08-21 13:02:36 +03:00

13 lines
114 B
C++

#include <atomic>
static int test()
{
std::atomic<int> x;
return x;
}
int main()
{
return test();
}