From 1a45a2d83337a7e3362bafe783a67181d48cd33e Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Fri, 1 Nov 2002 02:45:24 +0000 Subject: [PATCH] Workarounds for Sun Workshop 7 [SVN r16037] --- 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 6941459..976fa26 100644 --- a/include/boost/preprocessor/config/config.hpp +++ b/include/boost/preprocessor/config/config.hpp @@ -28,7 +28,7 @@ # 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()) -# elif defined(__BORLANDC__) || defined(__IBMC__) || defined(__IBMCPP__) +# elif defined(__BORLANDC__) || defined(__IBMC__) || defined(__IBMCPP__) || defined(__SUNPRO_CC) # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_BCC()) # elif defined(_MSC_VER) # define BOOST_PP_CONFIG_FLAGS() (BOOST_PP_CONFIG_MSVC())