forked from boostorg/preprocessor
Minor optimization
[SVN r12478]
This commit is contained in:
@ -88,8 +88,8 @@ See BOOST_PP_FOR().
|
||||
#define BOOST_PP_REPEAT0(M,P)
|
||||
#define BOOST_PP_REPEAT1(M,P) M(0,P)
|
||||
#define BOOST_PP_REPEAT2(M,P) M(0,P) M(1,P)
|
||||
#define BOOST_PP_REPEAT3(M,P) BOOST_PP_REPEAT2(M,P) M(2,P)
|
||||
#define BOOST_PP_REPEAT4(M,P) BOOST_PP_REPEAT3(M,P) M(3,P)
|
||||
#define BOOST_PP_REPEAT3(M,P) M(0,P) M(1,P) M(2,P)
|
||||
#define BOOST_PP_REPEAT4(M,P) M(0,P) M(1,P) M(2,P) M(3,P)
|
||||
#define BOOST_PP_REPEAT5(M,P) BOOST_PP_REPEAT4(M,P) M(4,P)
|
||||
#define BOOST_PP_REPEAT6(M,P) BOOST_PP_REPEAT5(M,P) M(5,P)
|
||||
#define BOOST_PP_REPEAT7(M,P) BOOST_PP_REPEAT6(M,P) M(6,P)
|
||||
|
Reference in New Issue
Block a user