Updated limit implementation.

This commit is contained in:
Edward Diener
2020-07-02 11:24:15 -04:00
parent 47b430e3d5
commit 15d0d66a75
161 changed files with 1185 additions and 33760 deletions

View File

@ -16,12 +16,14 @@
#
# /* BOOST_PP_DEDUCE_D */
#
# include <boost/preprocessor/detail/auto_rec.hpp>
#
# include <boost/preprocessor/config/limits.hpp>
#
# if BOOST_PP_LIMIT_WHILE == 256
# include <boost/preprocessor/control/limits/deduce_d_256.hpp>
# define BOOST_PP_DEDUCE_D() BOOST_PP_AUTO_REC(BOOST_PP_WHILE_P, 256)
# elif BOOST_PP_LIMIT_WHILE == 512
# include <boost/preprocessor/control/limits/deduce_d_512.hpp>
# define BOOST_PP_DEDUCE_D() BOOST_PP_AUTO_REC(BOOST_PP_WHILE_P, 512)
# else
# error Incorrect value for the BOOST_PP_LIMIT_WHILE limit
# endif