From 07bf374269e3f1b2a96bc61307592cdc79335c3d Mon Sep 17 00:00:00 2001 From: helixhorned Date: Mon, 1 Dec 2014 19:21:48 +0000 Subject: [PATCH] Fix build on platforms not magically #defining UNREFERENCED_PARAMETER. DONT_BUILD. git-svn-id: https://svn.eduke32.com/eduke32@4785 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/build/include/compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polymer/eduke32/build/include/compat.h b/polymer/eduke32/build/include/compat.h index 8c474548a..32a043663 100644 --- a/polymer/eduke32/build/include/compat.h +++ b/polymer/eduke32/build/include/compat.h @@ -26,7 +26,7 @@ # define __has_extension __has_feature // Compatibility with pre-3.0 compilers. #endif -#if defined(_MSC_VER) && _MSC_FULL_VER < 180031101 +#if !defined(_MSC_VER) || _MSC_FULL_VER < 180031101 #ifdef UNREFERENCED_PARAMETER #undef UNREFERENCED_PARAMETER #endif