mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-31 09:15:11 +00:00
8 lines
152 B
C++
8 lines
152 B
C++
|
#include <atomic>
|
||
|
int main(int argc, char* argv[])
|
||
|
{
|
||
|
std::atomic_flag f = ATOMIC_FLAG_INIT;
|
||
|
std::atomic<bool> g (false);
|
||
|
return 0;
|
||
|
}
|