Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-03-31 08:13:20

0001 # /* **************************************************************************
0002 #  *                                                                          *
0003 #  *     (C) Copyright Edward Diener 2011.
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 # /* Revised by Paul Mensonides (2011) */
0012 0013 ">#
0014 # /* See http://www.boost.org for most recent version. */
0015 0016 ">#
0017 # ifndef BOOST_PREPROCESSOR_LIST_TO_SEQ_HPP
0018 # define BOOST_PREPROCESSOR_LIST_TO_SEQ_HPP
0019 0020 ">#
0021 # include <boost/preprocessor/list/for_each.hpp>
0022 0023 ">#
0024 # /* BOOST_PP_LIST_TO_SEQ */
0025 0026 ">#
0027 # define BOOST_PP_LIST_TO_SEQ(list) \
0028     BOOST_PP_LIST_FOR_EACH(BOOST_PP_LIST_TO_SEQ_MACRO, ~, list) \
0029     /**/
0030 # define BOOST_PP_LIST_TO_SEQ_MACRO(r, data, elem) (elem)
0031 0032 ">#
0033 # /* BOOST_PP_LIST_TO_SEQ_R */
0034 0035 ">#
0036 # define BOOST_PP_LIST_TO_SEQ_R(r, list) \
0037     BOOST_PP_LIST_FOR_EACH_R(r, BOOST_PP_LIST_TO_SEQ_MACRO, ~, list) \
0038     /**/
0039 0040 ">#
0041 # endif /* BOOST_PREPROCESSOR_LIST_TO_SEQ_HPP */