Distribution_Service/CC_SDK/Environment/opencv/cmake/checks/atomic_check.cpp
2025-11-11 17:46:19 +08:00

13 lines
120 B
C++

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