cmake: use 'long long' for atomic check

This commit is contained in:
Alexander Alekhin 2019-09-18 15:18:09 +00:00
parent 8167d47efc
commit c657c6cbac

View File

@ -2,7 +2,7 @@
static int test()
{
std::atomic<int> x;
std::atomic<long long> x;
return x;
}