11 lines
No EOL
119 B
C++
11 lines
No EOL
119 B
C++
#ifndef SEQUENCE_LOCK_H
|
|
#define SEQUENCE_LOCK_H
|
|
|
|
#include <mutex>
|
|
|
|
namespace SequenceLock
|
|
{
|
|
std::mutex m;
|
|
}
|
|
|
|
#endif |