From b70d56a6b352229b77bee26b8883a23f0902618e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 18 Sep 2002 02:36:15 +0000 Subject: [PATCH] Fix misspelled __EDG_VERSION__ flag. [SVN r15431] --- include/boost/preprocessor/config/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/preprocessor/config/config.hpp b/include/boost/preprocessor/config/config.hpp index bba6d74..a86f978 100644 --- a/include/boost/preprocessor/config/config.hpp +++ b/include/boost/preprocessor/config/config.hpp @@ -24,7 +24,7 @@ # define BOOST_PP_CONFIG_EDG() 0x0020 # # ifndef BOOST_PP_CONFIG_FLAGS -# if defined(__EDG__) || defined(__EDG_VERSION) +# if defined(__EDG__) || defined(__EDG_VERSION__) # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_EDG() | BOOST_PP_CONFIG_STRICT()) # elif defined(__MWERKS__) # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MWCC())