From 546d5dc9a3032ded1c326c7a581c5ffa337f0532 Mon Sep 17 00:00:00 2001 From: Hartmut Kaiser Date: Sat, 21 Jan 2006 15:07:39 +0000 Subject: [PATCH] Changed the __SPIRIT_PP__ macro in the preprocessor lib config to __WAVE__. [SVN r32367] --- include/boost/preprocessor/config/config.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/boost/preprocessor/config/config.hpp b/include/boost/preprocessor/config/config.hpp index 4f5a3ed..a2ebcec 100644 --- a/include/boost/preprocessor/config/config.hpp +++ b/include/boost/preprocessor/config/config.hpp @@ -26,7 +26,9 @@ # ifndef BOOST_PP_CONFIG_FLAGS # if defined(__GCCXML__) # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) -# elif defined(__SPIRIT_PP__) || defined(__MWERKS__) && __MWERKS__ >= 0x3200 +# elif defined(__WAVE__) +# define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) +# elif defined(__MWERKS__) && __MWERKS__ >= 0x3200 # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_STRICT()) # elif defined(__EDG__) || defined(__EDG_VERSION__) # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_EDG() | BOOST_PP_CONFIG_STRICT())