Commit 2ad4439d authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

include: Fix preprocessor use of _MSC_VER.

parent a15f283c
...@@ -296,7 +296,7 @@ extern "C" { ...@@ -296,7 +296,7 @@ extern "C" {
#endif #endif
/* Eliminate Microsoft C/C++ compiler warning 4715 */ /* Eliminate Microsoft C/C++ compiler warning 4715 */
#if (_MSC_VER > 1200) #if defined(_MSC_VER) && (_MSC_VER > 1200)
# define DEFAULT_UNREACHABLE default: __assume(0) # define DEFAULT_UNREACHABLE default: __assume(0)
#else #else
# define DEFAULT_UNREACHABLE # define DEFAULT_UNREACHABLE
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment