From 8927ac12fc6722dae02b94ea1191f5e3f799d3b7 Mon Sep 17 00:00:00 2001 From: Paul Mensonides Date: Thu, 2 Jan 2003 06:29:00 +0000 Subject: [PATCH] MWCC fix [SVN r16729] --- include/boost/preprocessor/seq/detail/split.hpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/include/boost/preprocessor/seq/detail/split.hpp b/include/boost/preprocessor/seq/detail/split.hpp index 5c75083..75e7036 100644 --- a/include/boost/preprocessor/seq/detail/split.hpp +++ b/include/boost/preprocessor/seq/detail/split.hpp @@ -16,7 +16,12 @@ # /* BOOST_PP_SEQ_SPLIT */ # # define BOOST_PP_SEQ_SPLIT(n, seq) BOOST_PP_SEQ_SPLIT_D(n, seq) -# define BOOST_PP_SEQ_SPLIT_D(n, seq) (BOOST_PP_SEQ_SPLIT_ ## n seq) +# +# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC() +# define BOOST_PP_SEQ_SPLIT_D(n, seq) (BOOST_PP_SEQ_SPLIT_ ## n seq) +# else +# define BOOST_PP_SEQ_SPLIT_D(n, seq) (BOOST_PP_SEQ_SPLIT_ ## n ## seq) +# endif # # define BOOST_PP_SEQ_SPLIT_1(x) (x), # define BOOST_PP_SEQ_SPLIT_2(x) (x) BOOST_PP_SEQ_SPLIT_1