include: Fix preprocessor use of _MSC_VER.

oldstable
Gerald Pfeifer 2009-11-20 22:08:43 +01:00 committed by Alexandre Julliard
parent a15f283c7d
commit 2ad4439d51
1 changed files with 1 additions and 1 deletions

View File

@ -296,7 +296,7 @@ extern "C" {
#endif
/* Eliminate Microsoft C/C++ compiler warning 4715 */
#if (_MSC_VER > 1200)
#if defined(_MSC_VER) && (_MSC_VER > 1200)
# define DEFAULT_UNREACHABLE default: __assume(0)
#else
# define DEFAULT_UNREACHABLE