bug fixes, and filename support

[SVN r14207]
This commit is contained in:
Paul Mensonides
2002-06-20 07:25:26 +00:00
parent 8e2c98f5bc
commit 8b9dcd7849
5 changed files with 65 additions and 20 deletions

View File

@ -8,16 +8,21 @@
# * *
# ************************************************************************** */
#
# ifndef BOOST_PP_FILENAME_1
# error BOOST_PP: depth #1 filename is not defined
# endif
#
# ifdef BOOST_PP_ITERATION_LIMITS
# ifndef BOOST_PP_FILENAME_1
# error BOOST_PP: depth #1 filename is not defined
# endif
# 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
# elif defined(BOOST_PP_ITERATION_PARAMS_1)
# define BOOST_PP_ITERATION_BOUND BOOST_PP_TUPLE_ELEM(3, 0, BOOST_PP_ITERATION_PARAMS_1)
# include BOOST_PP_SET_ITERATION_START()
# define BOOST_PP_ITERATION_BOUND BOOST_PP_TUPLE_ELEM(3, 1, BOOST_PP_ITERATION_PARAMS_1)
# include BOOST_PP_SET_ITERATION_FINISH()
# define BOOST_PP_FILENAME_1 BOOST_PP_TUPLE_ELEM(3, 2, BOOST_PP_ITERATION_PARAMS_1)
# else
# error BOOST_PP: depth #1 iterations boundaries not defined
# endif
@ -1326,4 +1331,8 @@
# undef BOOST_PP_ITERATION_DEPTH
# define BOOST_PP_ITERATION_DEPTH() 0
#
# undef BOOST_PP_ITERATION_START_1
# undef BOOST_PP_ITERATION_FINISH_1
# undef BOOST_PP_FILENAME_1
#
# undef BOOST_PP_ITERATION_PARAMS_1