From 4d22a1d7efb43931aa335c92ce3f059baca0cce8 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 16 Nov 2001 11:14:59 +0000 Subject: [PATCH] fix logic error in #if condition --- panda/src/express/pointerToArray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/express/pointerToArray.h b/panda/src/express/pointerToArray.h index 85cc20df8a..de9a057ee6 100644 --- a/panda/src/express/pointerToArray.h +++ b/panda/src/express/pointerToArray.h @@ -74,7 +74,7 @@ #include "pointerTo.h" #include "pvector.h" -#if defined(WIN32_VC) || !defined(__INTEL_COMPILER) +#if defined(WIN32_VC) && !defined(__INTEL_COMPILER) // disable mysterious MSVC warning for static inline PTA::empty_array method // need to chk if vc 7.0 still has this problem, would like to keep it enabled #pragma warning (disable : 4506)