File indexing completed on 2026-04-01 08:14:55
0001 #
0002
0003
0004
0005
0006
0007
0008
0009
0010 0011 ">#
0012 #
0013 0014 ">#
0015 # ifndef BOOST_PREPROCESSOR_VARIADIC_TO_LIST_HPP
0016 # define BOOST_PREPROCESSOR_VARIADIC_TO_LIST_HPP
0017 0018 ">#
0019 # include <boost/preprocessor/config/config.hpp>
0020 # include <boost/preprocessor/control/if.hpp>
0021 # include <boost/preprocessor/tuple/to_list.hpp>
0022 # include <boost/preprocessor/variadic/has_opt.hpp>
0023 # include <boost/preprocessor/variadic/size.hpp>
0024 0025 ">#
0026 #
0027 0028 ">#
0029 # if BOOST_PP_VARIADIC_HAS_OPT()
0030 # define BOOST_PP_VARIADIC_TO_LIST_NOT_EMPTY(...) BOOST_PP_TUPLE_TO_LIST((__VA_ARGS__))
0031 # define BOOST_PP_VARIADIC_TO_LIST_EMPTY(...) BOOST_PP_NIL
0032 # define BOOST_PP_VARIADIC_TO_LIST(...) BOOST_PP_IF(BOOST_PP_VARIADIC_SIZE(__VA_ARGS__),BOOST_PP_VARIADIC_TO_LIST_NOT_EMPTY,BOOST_PP_VARIADIC_TO_LIST_EMPTY)(__VA_ARGS__)
0033 # else
0034 # define BOOST_PP_VARIADIC_TO_LIST(...) BOOST_PP_TUPLE_TO_LIST((__VA_ARGS__))
0035 # endif
0036 0037 ">#
0038 # endif