cameracv/libs/opencv/cmake/checks/atomic_check.cpp
2023-05-18 21:39:43 +03:00

12 lines
120 B
C++

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