2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 09:02:15 +00:00

workaround for MIPSpro 7.3.1; old workaround for VC7.1 visible only to that particular compiler

[SVN r20668]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2003-11-04 20:20:07 +00:00
parent cdee5997af
commit c760cf8418

View File

@@ -18,8 +18,12 @@
// trouble for non-conforming compilers and libraries.
#include <math.h>
#if BOOST_WORKAROUND(BOOST_MSVC, == 1310)
// vc7.1 seems to require this (incorrectly) in order to use the "not" keyword
#include <ciso646>
#elif BOOST_WORKAROUND(__EDG_VERSION__, <= 238)
#define not !
#endif
using namespace boost::python;