ZLMediaKit/cmake/checks/atomic_check.cpp

12 lines
119 B
C++

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