1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-21 19:33:03 +04:00
Files
opencv/cmake/checks/atomic_check.cpp
T
2019-09-18 15:18:09 +00:00

13 lines
120 B
C++

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