a-zlm/cmake/checks/atomic_check.cpp

12 lines
122 B
C++
Raw Normal View History

2026-01-14 15:38:20 +08:00
#include <atomic>
static int test()
{
std::atomic<long long> x;
return x;
}
int main()
{
return test();
}