removed boolean var

This commit is contained in:
2020-12-02 00:17:12 +01:00
parent a92f6c5d8e
commit 206d4b58b2
2 changed files with 1 additions and 8 deletions

View File

@ -22,7 +22,7 @@ public:
std::timed_mutex* getMutexHandle();
private:
bool locked = false;
//bool locked = false;
std::timed_mutex mutex;
};