forked from boostorg/preprocessor
modified upper/lower bound interface
[SVN r14205]
This commit is contained in:
@ -9,13 +9,17 @@
|
||||
# ************************************************************************** */
|
||||
#
|
||||
# ifndef BOOST_PP_FILENAME_5
|
||||
# error BOOST_PP: depth #5 filename is not set
|
||||
# elif !defined BOOST_PP_ITERATION_START_5
|
||||
# error BOOST_PP: depth #5 upper bound is not set
|
||||
# error BOOST_PP: depth #5 filename is not defined
|
||||
# endif
|
||||
#
|
||||
# ifndef BOOST_PP_ITERATION_START_5
|
||||
# define BOOST_PP_ITERATION_START_5 BOOST_PP_DEFAULT_START
|
||||
# ifdef BOOST_PP_ITERATION_LIMITS
|
||||
# define BOOST_PP_ITERATION_BOUND BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PP_ITERATION_LIMITS)
|
||||
# include BOOST_PP_SET_ITERATION_START()
|
||||
# define BOOST_PP_ITERATION_BOUND BOOST_PP_TUPLE_ELEM(2, 1, BOOST_PP_ITERATION_LIMITS)
|
||||
# include BOOST_PP_SET_ITERATION_FINISH()
|
||||
# undef BOOST_PP_ITERATION_LIMITS
|
||||
# else
|
||||
# error BOOST_PP: depth #5 iterations boundaries not defined
|
||||
# endif
|
||||
#
|
||||
# if BOOST_PP_ITERATION_DEPTH() != 4
|
||||
@ -27,12 +31,12 @@
|
||||
#
|
||||
# line 1 ""
|
||||
#
|
||||
# if BOOST_PP_ITERATION_START_5 <= 0 && BOOST_PP_ITERATION_START_5 >= 0
|
||||
# if (BOOST_PP_ITERATION_START_5 <= 0) && (BOOST_PP_ITERATION_START_5 >= 0)
|
||||
# define BOOST_PP_ITERATION_5 0
|
||||
# include BOOST_PP_FILENAME_5
|
||||
# undef BOOST_PP_ITERATION_5
|
||||
# endif
|
||||
# if BOOST_PP_ITERATION_START_5 <= 1 && BOOST_PP_ITERATION_START_5 >= 1
|
||||
# if (BOOST_PP_ITERATION_START_5 <= 1) && (BOOST_PP_ITERATION_START_5 >= 1)
|
||||
# define BOOST_PP_ITERATION_5 1
|
||||
# include BOOST_PP_FILENAME_5
|
||||
# undef BOOST_PP_ITERATION_5
|
||||
|
Reference in New Issue
Block a user