Remove mutex class and use std

This commit is contained in:
Ilusha 2024-01-17 22:42:48 +03:00 committed by Ilya Shurupov
parent b26310439d
commit 0b63045503
5 changed files with 5 additions and 22 deletions

View file

@ -1,16 +0,0 @@
#pragma once
#include <mutex>
namespace tp {
class Mutex {
std::mutex mMutex;
public:
Mutex() = default;
void lock() { mMutex.lock(); }
void unlock() { mMutex.unlock(); }
};
}