mirror of
https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git
synced 2024-11-26 16:34:35 +00:00
Compiler compatibility fix for VMA_USE_STL_SHARED_MUTEX macro. Issue #52 thanks @jamesRumbleh !
This commit is contained in:
parent
309588df4b
commit
8007f24376
@ -3139,9 +3139,16 @@ the containers.
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef VMA_USE_STL_SHARED_MUTEX
|
#ifndef VMA_USE_STL_SHARED_MUTEX
|
||||||
// Minimum Visual Studio 2015 Update 2
|
// Compiler conforms to C++17.
|
||||||
#if defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 190023918
|
#if __cplusplus >= 201703L
|
||||||
#define VMA_USE_STL_SHARED_MUTEX 1
|
#define VMA_USE_STL_SHARED_MUTEX 1
|
||||||
|
// Visual studio defines __cplusplus properly only when passed additional parameter: /Zc:__cplusplus
|
||||||
|
// Otherwise it's always 199711L, despite shared_mutex works since Visual Studio 2015 Update 2.
|
||||||
|
// See: https://blogs.msdn.microsoft.com/vcblog/2018/04/09/msvc-now-correctly-reports-__cplusplus/
|
||||||
|
#elif defined(_MSC_FULL_VER) && _MSC_FULL_VER >= 190023918 && __cplusplus == 199711L && _MSVC_LANG >= 201703L
|
||||||
|
#define VMA_USE_STL_SHARED_MUTEX 1
|
||||||
|
#else
|
||||||
|
#define VMA_USE_STL_SHARED_MUTEX 0
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user