forked from boostorg/preprocessor
Fix dec limits. Allow 1024 in number and seq limits.
This commit is contained in:
@ -69,7 +69,7 @@
|
||||
#else
|
||||
#
|
||||
# if defined(BOOST_PP_LIMIT_MAG)
|
||||
# if !(BOOST_PP_LIMIT_MAG == 256 || BOOST_PP_LIMIT_MAG == 512)
|
||||
# if !(BOOST_PP_LIMIT_MAG == 256 || BOOST_PP_LIMIT_MAG == 512 || BOOST_PP_LIMIT_MAG == 1024)
|
||||
# undef BOOST_PP_LIMIT_MAG
|
||||
# define BOOST_PP_LIMIT_MAG 256
|
||||
# define BOOST_PP_LIMIT_WHILE 256
|
||||
@ -136,7 +136,7 @@
|
||||
# endif
|
||||
#
|
||||
# if defined(BOOST_PP_LIMIT_SEQ)
|
||||
# if !(BOOST_PP_LIMIT_SEQ == 256 || BOOST_PP_LIMIT_SEQ == 512)
|
||||
# if !(BOOST_PP_LIMIT_SEQ == 256 || BOOST_PP_LIMIT_SEQ == 512 || BOOST_PP_LIMIT_SEQ == 1024)
|
||||
# undef BOOST_PP_LIMIT_SEQ
|
||||
# define BOOST_PP_LIMIT_SEQ 256
|
||||
# elif BOOST_PP_LIMIT_SEQ > BOOST_PP_LIMIT_MAG
|
||||
|
Reference in New Issue
Block a user