cameracv/libs/opencv/cmake/checks/atomic_check.cpp

13 lines
120 B
C++
Raw Normal View History

2023-05-18 21:39:43 +03:00
#include <atomic>
static int test()
{
std::atomic<long long> x;
return x;
}
int main()
{
return test();
}