mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2024-11-10 10:41:52 +00:00
Fix C++17 shared_mutex compile error
In C++17 the method is called: https://en.cppreference.com/w/cpp/thread/shared_mutex/try_lock_shared
This commit is contained in:
parent
c467e28f2f
commit
361fcfcae4
@ -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(); }
|
||||
|
Loading…
Reference in New Issue
Block a user