Sha256: 5ecc38dc7d5fb23f814fd40d149d1cbfa80ba5f146eaa93422ec879018039865

Contents?: true

Size: 1.62 KB

Versions: 28

Compression:

Stored size: 1.62 KB

Contents

# /* **************************************************************************
#  *                                                                          *
#  *     (C) Copyright Edward Diener 2011.                                    *
#  *     (C) Copyright Paul Mensonides 2011.                                  *
#  *     Distributed under the Boost Software License, Version 1.0. (See      *
#  *     accompanying file LICENSE_1_0.txt or copy at                         *
#  *     http://www.boost.org/LICENSE_1_0.txt)                                *
#  *                                                                          *
#  ************************************************************************** */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_ARRAY_TO_LIST_HPP
# define BOOST_PREPROCESSOR_ARRAY_TO_LIST_HPP
#
# include <boost/preprocessor/cat.hpp>
# include <boost/preprocessor/config/config.hpp>
# include <boost/preprocessor/tuple/to_list.hpp>
#
# /* BOOST_PP_ARRAY_TO_LIST */
#
# if BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
#    define BOOST_PP_ARRAY_TO_LIST(array) BOOST_PP_ARRAY_TO_LIST_I(BOOST_PP_TUPLE_TO_LIST, array)
#    define BOOST_PP_ARRAY_TO_LIST_I(m, args) BOOST_PP_ARRAY_TO_LIST_II(m, args)
#    define BOOST_PP_ARRAY_TO_LIST_II(m, args) BOOST_PP_CAT(m ## args,)
# elif BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()
#    define BOOST_PP_ARRAY_TO_LIST(array) BOOST_PP_ARRAY_TO_LIST_I(array)
#    define BOOST_PP_ARRAY_TO_LIST_I(array) BOOST_PP_TUPLE_TO_LIST ## array
# else
#    define BOOST_PP_ARRAY_TO_LIST(array) BOOST_PP_TUPLE_TO_LIST array
# endif
#
# endif

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
passenger-5.0.24 src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp
passenger-5.0.23 src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp
passenger-5.0.22 src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp
passenger-5.0.21 src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp
passenger-5.0.20 src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp
passenger-5.0.19 src/cxx_supportlib/vendor-modified/boost/preprocessor/array/to_list.hpp
passenger-5.0.18 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.17 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.16 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.15 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.14 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.13 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.11 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.10 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.9 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.8 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.7 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.6 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.5 ext/boost/preprocessor/array/to_list.hpp
passenger-5.0.4 ext/boost/preprocessor/array/to_list.hpp