mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-10 22:50:31 +00:00
8 lines
131 B
C++
8 lines
131 B
C++
![]() |
#include <mutex>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
std::mutex m;
|
||
|
std::lock_guard<std::mutex> l(m);
|
||
|
return 0;
|
||
|
}
|