1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 15:23:05 +04:00
Files
opencv/cmake/checks/atomic_check.cpp
T
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();
}