Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-01 08:14:55

0001 # /* **************************************************************************
0002 #  *                                                                          *
0003 #  *     (C) Copyright Edward Diener 2011.                                    *
0004 #  *     (C) Copyright Paul Mensonides 2011.                                  *
0005 #  *     Distributed under the Boost Software License, Version 1.0. (See      *
0006 #  *     accompanying file LICENSE_1_0.txt or copy at                         *
0007 #  *     http://www.boost.org/LICENSE_1_0.txt)                                *
0008 #  *                                                                          *
0009 #  ************************************************************************** */
0010 0011 ">#
0012 # /* See http://www.boost.org for most recent version. */
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 # /* BOOST_PP_VARIADIC_TO_LIST */
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