mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-29 19:57:14 +02:00
Avoid references to root project.
This commit is contained in:
@ -16,19 +16,19 @@
|
||||
# include <boost/preprocessor/control/expr_iif.hpp>
|
||||
# include <boost/preprocessor/iteration.hpp>
|
||||
# include <boost/preprocessor/logical/bitor.hpp>
|
||||
# include <libs/preprocessor/test/test.h>
|
||||
# include "test.h"
|
||||
#
|
||||
# define NO_FLAGS
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (3, (1, 10, <libs/preprocessor/test/iteration.h>))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (3, (1, 10, "iteration.h"))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# undef NO_FLAGS
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 5, <libs/preprocessor/test/iteration.h>, 0x0001))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 5, "iteration.h", 0x0001))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 5, <libs/preprocessor/test/iteration.h>, 0x0002))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (1, 5, "iteration.h", 0x0002))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# if BOOST_PP_LIMIT_ITERATION == 512
|
||||
@ -53,7 +53,7 @@
|
||||
) \
|
||||
/* */
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (0, 512, <libs/preprocessor/test/iteration.h>, 0x0003))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (0, 512, "iteration.h", 0x0003))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# undef ITER100S
|
||||
@ -78,7 +78,7 @@
|
||||
) \
|
||||
/* */
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (512, 0, <libs/preprocessor/test/iteration.h>, 0x0004))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (512, 0, "iteration.h", 0x0004))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# undef ITER50S
|
||||
@ -127,7 +127,7 @@
|
||||
) \
|
||||
/* */
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (0, 1024, <libs/preprocessor/test/iteration.h>, 0x0005))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (0, 1024, "iteration.h", 0x0005))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# undef ITER100SA
|
||||
@ -172,7 +172,7 @@
|
||||
) \
|
||||
/* */
|
||||
#
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (1024, 0, <libs/preprocessor/test/iteration.h>, 0x0006))
|
||||
# define BOOST_PP_ITERATION_PARAMS_1 (4, (1024, 0, "iteration.h", 0x0006))
|
||||
# include BOOST_PP_ITERATE()
|
||||
#
|
||||
# undef ITER50SA
|
||||
@ -197,7 +197,7 @@ struct BOOST_PP_CAT(Y, BOOST_PP_ITERATION()) { };
|
||||
# elif BOOST_PP_ITERATION_DEPTH() == 1 \
|
||||
&& BOOST_PP_ITERATION_FLAGS() == 0x0002
|
||||
|
||||
# define BOOST_PP_ITERATION_PARAMS_2 (3, (1, BOOST_PP_ITERATION(), <libs/preprocessor/test/iteration.h>))
|
||||
# define BOOST_PP_ITERATION_PARAMS_2 (3, (1, BOOST_PP_ITERATION(), "iteration.h"))
|
||||
# include BOOST_PP_ITERATE()
|
||||
|
||||
# elif BOOST_PP_ITERATION_DEPTH() == 1 \
|
||||
|
Reference in New Issue
Block a user