diff --git a/doc/ref/enum_params_with_defaults.html b/doc/ref/enum_params_with_defaults.html index d731069..d58255c 100644 --- a/doc/ref/enum_params_with_defaults.html +++ b/doc/ref/enum_params_with_defaults.html @@ -64,10 +64,10 @@ #include <boost/preprocessor/repetition/enum_params_with_defaults.hpp> BOOST_PP_ENUM_PARAMS_WITH_DEFAULTS(3, class T, U) - // expands to T0 = U0, T1 = U1, T2 = U2 + // expands to class T0 = U0, class T1 = U1, class T2 = U2 BOOST_PP_ENUM_BINARY_PARAMS(3, class T, = U) - // expands to T0 = U0, T1 = U1, T2 = U2 + // expands to class T0 = U0, class T1 = U1, class T2 = U2
#include <boost/preprocessor/control/iif.hpp> -#include <boost/preprocessor/logical/or.hpp +#include <boost/preprocessor/logical/or.hpp> #define OR_IF(p, q, t, f) BOOST_PP_IIF(BOOST_PP_OR(p, q), t, f) diff --git a/doc/ref/limit_iteration_dim.html b/doc/ref/limit_iteration_dim.html index 6262e8f..54d9c9c 100644 --- a/doc/ref/limit_iteration_dim.html +++ b/doc/ref/limit_iteration_dim.html @@ -13,7 +13,7 @@