2002-10-13 06:11:19 +00:00
|
|
|
# /* **************************************************************************
|
|
|
|
# * *
|
2011-06-26 13:07:20 +00:00
|
|
|
# * (C) Copyright Paul Mensonides 2002-2011. *
|
|
|
|
# * (C) Copyright Edward Diener 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) *
|
2002-10-13 06:11:19 +00:00
|
|
|
# * *
|
|
|
|
# ************************************************************************** */
|
|
|
|
#
|
2020-05-01 14:38:32 -04:00
|
|
|
# /* Revised by Edward Diener (2020) */
|
|
|
|
#
|
2002-10-13 06:11:19 +00:00
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
2002-11-07 23:16:43 +00:00
|
|
|
# ifndef BOOST_PREPROCESSOR_TUPLE_TO_SEQ_HPP
|
|
|
|
# define BOOST_PREPROCESSOR_TUPLE_TO_SEQ_HPP
|
2002-10-13 06:11:19 +00:00
|
|
|
#
|
2020-05-01 14:38:32 -04:00
|
|
|
# include <boost/preprocessor/config/limits.hpp>
|
2002-10-13 06:11:19 +00:00
|
|
|
#
|
2020-05-01 14:38:32 -04:00
|
|
|
# if BOOST_PP_LIMIT_TUPLE == 64
|
|
|
|
# include <boost/preprocessor/tuple/limits/to_seq_64.hpp>
|
|
|
|
# elif BOOST_PP_LIMIT_TUPLE == 128
|
|
|
|
# include <boost/preprocessor/tuple/limits/to_seq_128.hpp>
|
|
|
|
# elif BOOST_PP_LIMIT_TUPLE == 256
|
|
|
|
# include <boost/preprocessor/tuple/limits/to_seq_256.hpp>
|
2002-10-13 06:11:19 +00:00
|
|
|
# else
|
2020-05-01 14:38:32 -04:00
|
|
|
# error Incorrect value for the BOOST_PP_LIMIT_TUPLE limit
|
2002-10-13 06:11:19 +00:00
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# endif
|