certificate/include/cryptopp/TestPrograms/test_cxx11_atomic.cpp

8 lines
145 B
C++
Raw Normal View History

2025-06-26 15:15:38 +00:00
#include <atomic>
int main(int argc, char* argv[])
{
std::atomic_flag f = ATOMIC_FLAG_INIT;
std::atomic<bool> g (false);
return 0;
}