ZLMediaKit/cmake/checks/atomic_check.cpp
2025-04-13 19:42:30 +08:00

12 lines
122 B
C++

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