From c760cf8418f8e4f1b5d10f768c49b64128bb89a5 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 4 Nov 2003 20:20:07 +0000 Subject: [PATCH] workaround for MIPSpro 7.3.1; old workaround for VC7.1 visible only to that particular compiler [SVN r20668] --- test/operators.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/operators.cpp b/test/operators.cpp index 94246c3f..391cd550 100755 --- a/test/operators.cpp +++ b/test/operators.cpp @@ -18,8 +18,12 @@ // trouble for non-conforming compilers and libraries. #include +#if BOOST_WORKAROUND(BOOST_MSVC, == 1310) // vc7.1 seems to require this (incorrectly) in order to use the "not" keyword #include +#elif BOOST_WORKAROUND(__EDG_VERSION__, <= 238) +#define not ! +#endif using namespace boost::python;