File indexing completed on 2026-06-13 08:18:38
0001 #
0002
0003
0004
0005
0006
0007
0008
0009 0010 ">#
0011 # ifndef BOOST_PREPROCESSOR_DETAIL_SPLIT_HPP
0012 # define BOOST_PREPROCESSOR_DETAIL_SPLIT_HPP
0013 0014 ">#
0015 # include <boost/preprocessor/config/config.hpp>
0016 0017 ">#
0018 #
0019 0020 ">#
0021 # if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()
0022 # define BOOST_PP_SPLIT(n, im) BOOST_PP_SPLIT_I((n, im))
0023 # define BOOST_PP_SPLIT_I(par) BOOST_PP_SPLIT_II ## par
0024 # define BOOST_PP_SPLIT_II(n, a, b) BOOST_PP_SPLIT_ ## n(a, b)
0025 # elif BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
0026 # define BOOST_PP_SPLIT(n, im) BOOST_PP_SPLIT_I(n((im)))
0027 # define BOOST_PP_SPLIT_I(n) BOOST_PP_SPLIT_ID(BOOST_PP_SPLIT_II_ ## n)
0028 # define BOOST_PP_SPLIT_II_0(s) BOOST_PP_SPLIT_ID(BOOST_PP_SPLIT_0 s)
0029 # define BOOST_PP_SPLIT_II_1(s) BOOST_PP_SPLIT_ID(BOOST_PP_SPLIT_1 s)
0030 # define BOOST_PP_SPLIT_ID(id) id
0031 # else
0032 # define BOOST_PP_SPLIT(n, im) BOOST_PP_SPLIT_I(n)(im)
0033 # define BOOST_PP_SPLIT_I(n) BOOST_PP_SPLIT_ ## n
0034 # endif
0035 0036 ">#
0037 # define BOOST_PP_SPLIT_0(a, b) a
0038 # define BOOST_PP_SPLIT_1(a, b) b
0039 0040 ">#
0041 # endif