Files
opencv-wasm/cmake/checks/atomic_check.cpp
2022-05-06 01:58:53 +08:00

13 lines
120 B
C++

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