First Commit
This commit is contained in:
7
externals/cryptopp/TestPrograms/test_cxx11_atomic.cpp
vendored
Normal file
7
externals/cryptopp/TestPrograms/test_cxx11_atomic.cpp
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <atomic>
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||||
std::atomic<bool> g (false);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user