diff --git a/include/boost/preprocessor/max.hpp b/include/boost/preprocessor/max.hpp index b8a343e..da80b65 100644 --- a/include/boost/preprocessor/max.hpp +++ b/include/boost/preprocessor/max.hpp @@ -24,11 +24,6 @@ in the range [0, BOOST_PP_LIMIT_MAG].
For example, BOOST_PP_MAX(5,7)
expands to 7
(a
single token).
Can be used inside BOOST_PP_WHILE().
*/ +/**Can be used inside BOOST_PP_WHILE() (see for an explanation of the D parameter).
*/ #define BOOST_PP_MAX_D(D,X,Y) BOOST_PP_IF(BOOST_PP_LESS_EQUAL_D(D,X,Y),Y,X) - -/*Obsolete. Use BOOST_PP_MAX().
*/ -#define BOOST_PREPROCESSOR_MAX(X,Y) BOOST_PP_MAX(X,Y) #endif diff --git a/include/boost/preprocessor/min.hpp b/include/boost/preprocessor/min.hpp index e345ad0..6251686 100644 --- a/include/boost/preprocessor/min.hpp +++ b/include/boost/preprocessor/min.hpp @@ -24,11 +24,6 @@ in the range [0, BOOST_PP_LIMIT_MAG].For example, BOOST_PP_MIN(5,7)
expands to 5
(a
single token).
Can be used inside BOOST_PP_WHILE().
*/ +/**Can be used inside BOOST_PP_WHILE() (see for an explanation of the D parameter).
*/ #define BOOST_PP_MIN_D(D,X,Y) BOOST_PP_IF(BOOST_PP_LESS_EQUAL_D(D,Y,X),Y,X) - -/*Obsolete. Use BOOST_PP_MIN().
*/ -#define BOOST_PREPROCESSOR_MIN(X,Y) BOOST_PP_MIN(X,Y) #endif