Merge pull request #95 from TheLavaBlock/master

Fix C++17 shared_mutex compile error
This commit is contained in:
Adam Sawicki 2019-12-30 13:24:44 +01:00 committed by GitHub
commit d0e55f9b7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3715,7 +3715,7 @@ void *aligned_alloc(size_t alignment, size_t size)
public:
void LockRead() { m_Mutex.lock_shared(); }
void UnlockRead() { m_Mutex.unlock_shared(); }
bool TryLockRead() { return m_Mutex.try_shared_lock(); }
bool TryLockRead() { return m_Mutex.try_lock_shared(); }
void LockWrite() { m_Mutex.lock(); }
void UnlockWrite() { m_Mutex.unlock(); }
bool TryLockWrite() { return m_Mutex.try_lock(); }