modified upper/lower bound interface

[SVN r14205]
This commit is contained in:
Paul Mensonides
2002-06-20 07:01:10 +00:00
parent 71bd1a7838
commit 3899e96e81
7 changed files with 63 additions and 42 deletions

View File

@ -7,15 +7,19 @@
# * no claim at to its suitability for any purpose. *
# * *
# ************************************************************************** */
#
#
# ifndef BOOST_PP_FILENAME_1
# error BOOST_PP: depth #1 filename is not set
# elif !defined BOOST_PP_ITERATION_FINISH_1
# error BOOST_PP: depth #1 upper bound is not set
# error BOOST_PP: depth #1 filename is not defined
# endif
#
# ifndef BOOST_PP_ITERATION_START_1
# define BOOST_PP_ITERATION_START_1 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 #1 iterations boundaries not defined
# endif
#
# if BOOST_PP_ITERATION_DEPTH() != 0
@ -29,12 +33,12 @@
#
# line 1 ""
#
# if BOOST_PP_ITERATION_START_1 <= 0 && BOOST_PP_ITERATION_FINISH_1 >= 0
# if (BOOST_PP_ITERATION_START_1 <= 0) && (BOOST_PP_ITERATION_FINISH_1 >= 0)
# define BOOST_PP_ITERATION_1 0
# include BOOST_PP_FILENAME_1
# undef BOOST_PP_ITERATION_1
# endif
# if BOOST_PP_ITERATION_START_1 <= 1 && BOOST_PP_ITERATION_FINISH_1 >= 1
# if (BOOST_PP_ITERATION_START_1 <= 1) && (BOOST_PP_ITERATION_FINISH_1 >= 1)
# define BOOST_PP_ITERATION_1 1
# include BOOST_PP_FILENAME_1
# undef BOOST_PP_ITERATION_1