Check if _MSC_VER is defined before using.

Fixes compilation errors on some platforms.
This commit is contained in:
Daniel Koch
2019-04-03 17:21:06 -04:00
parent ef807f4bc5
commit 8b2f96d3fe
2 changed files with 2 additions and 2 deletions

View File

@@ -45,7 +45,7 @@ namespace spv {
// MSVC defines __cplusplus as an older value, even when it supports almost all of 11.
// We handle that here by making our own symbol.
#if __cplusplus >= 201103L || _MSC_VER >= 1700
#if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1700)
# define use_cpp11 1
#endif