Implement tuple limits for TUPLE functionality. Add updated copyright for changed files.

This commit is contained in:
Edward Diener
2020-05-01 14:38:32 -04:00
parent 0dcaaac66f
commit 533d636ece
83 changed files with 4307 additions and 4508 deletions

View File

@ -7,16 +7,23 @@
# * *
# ************************************************************************** */
#
# /* Revised by Edward Diener (2020) */
#
# /* See http://www.boost.org for most recent version. */
#
# ifndef BOOST_PREPROCESSOR_REPETITION_DEDUCE_R_HPP
# define BOOST_PREPROCESSOR_REPETITION_DEDUCE_R_HPP
#
# include <boost/preprocessor/detail/auto_rec.hpp>
# include <boost/preprocessor/repetition/for.hpp>
#
# /* BOOST_PP_DEDUCE_R */
#
# define BOOST_PP_DEDUCE_R() BOOST_PP_AUTO_REC(BOOST_PP_FOR_P, 256)
# include <boost/preprocessor/config/limits.hpp>
#
# if BOOST_PP_LIMIT_FOR == 256
# include <boost/preprocessor/repetition/limits/deduce_r_256.hpp>
# elif BOOST_PP_LIMIT_FOR == 512
# include <boost/preprocessor/repetition/limits/deduce_r_512.hpp>
# else
# error Incorrect value for the BOOST_PP_LIMIT_FOR limit
# endif
#
# endif