2011-06-26 13:07:20 +00:00
|
|
|
# /* **************************************************************************
|
|
|
|
# * *
|
|
|
|
# * (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) *
|
|
|
|
# * *
|
|
|
|
# ************************************************************************** */
|
|
|
|
#
|
2020-05-01 14:38:32 -04:00
|
|
|
# /* Revised by Edward Diener (2020) */
|
|
|
|
#
|
2011-06-26 13:07:20 +00:00
|
|
|
# /* See http://www.boost.org for most recent version. */
|
|
|
|
#
|
|
|
|
# ifndef BOOST_PREPROCESSOR_VARIADIC_ELEM_HPP
|
|
|
|
# define BOOST_PREPROCESSOR_VARIADIC_ELEM_HPP
|
|
|
|
#
|
|
|
|
# /* BOOST_PP_VARIADIC_ELEM */
|
|
|
|
#
|
2020-04-30 09:06:06 -04:00
|
|
|
# include <boost/preprocessor/config/limits.hpp>
|
|
|
|
#
|
2020-05-03 14:35:41 -04:00
|
|
|
# if BOOST_PP_LIMIT_VARIADIC == 64
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/variadic/limits/elem_64.hpp>
|
2020-05-03 14:35:41 -04:00
|
|
|
# elif BOOST_PP_LIMIT_VARIADIC == 128
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/variadic/limits/elem_128.hpp>
|
2020-05-03 14:35:41 -04:00
|
|
|
# elif BOOST_PP_LIMIT_VARIADIC == 256
|
2020-04-30 10:24:33 -04:00
|
|
|
# include <boost/preprocessor/variadic/limits/elem_256.hpp>
|
2020-04-30 09:06:06 -04:00
|
|
|
# else
|
|
|
|
# error Incorrect value for the BOOST_PP_LIMIT_TUPLE limit
|
2011-06-26 13:07:20 +00:00
|
|
|
# endif
|
|
|
|
#
|
|
|
|
# endif
|