mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-16 14:02:17 +02:00
MWCC fix
[SVN r16729]
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user