Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-06-13 08:18:38

0001 # /* **************************************************************************
0002 #  *                                                                          *
0003 #  *     (C) Copyright Paul Mensonides 2002.
0004 #  *     Distributed under the Boost Software License, Version 1.0. (See
0005 #  *     accompanying file LICENSE_1_0.txt or copy at
0006 #  *     http://www.boost.org/LICENSE_1_0.txt)
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 # /* BOOST_PP_SPLIT */
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