Added ability to change the number of tuple elements. A number of small fixes.

This commit is contained in:
Edward Diener
2020-04-30 09:06:06 -04:00
parent 82addd1b28
commit 3b6102cd03
15 changed files with 1766 additions and 121 deletions

View File

@ -14,12 +14,12 @@
#
# include <boost/preprocessor/config/limits.hpp>
#
# if BOOST_PP_LIMIT_MAG == 256
# if BOOST_PP_LIMIT_SEQ == 256
# include <boost/preprocessor/seq/fold_left_256.hpp>
# elif BOOST_PP_LIMIT_MAG == 512
# elif BOOST_PP_LIMIT_SEQ == 512
# include <boost/preprocessor/seq/fold_left_512.hpp>
# else
# error Incorrect value for the BOOST_PP_LIMIT_MAG limit
# error Incorrect value for the BOOST_PP_LIMIT_SEQ limit
# endif
#
# endif