First Commit
This commit is contained in:
7
externals/cryptopp/TestPrograms/test_cxx11_sync.cpp
vendored
Normal file
7
externals/cryptopp/TestPrograms/test_cxx11_sync.cpp
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
#include <mutex>
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
std::mutex m;
|
||||
std::lock_guard<std::mutex> l(m);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user