From 12120413f92de565ef342fd4f22f4254324cb76d Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Fri, 19 Jul 2002 20:10:11 +0000 Subject: [PATCH] #undef isspace etc. [SVN r14539] --- include/boost/python/str.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/boost/python/str.hpp b/include/boost/python/str.hpp index 72161c7b..758aa79e 100644 --- a/include/boost/python/str.hpp +++ b/include/boost/python/str.hpp @@ -5,6 +5,13 @@ #include #include +// disable defines in provided by some system libraries +#undef isspace +#undef islower +#undef isalpha +#undef isdigit +#undef isalnum + namespace boost { namespace python { class str : public object