diff --git a/include/boost/preprocessor/limits.hpp b/include/boost/preprocessor/limits.hpp index 107bb81..ee880e9 100644 --- a/include/boost/preprocessor/limits.hpp +++ b/include/boost/preprocessor/limits.hpp @@ -40,5 +40,5 @@ BOOST_PP_REPEAT() and BOOST_PP_REPEAT_FROM_TO()).
#define BOOST_PP_LIMIT_MAG 128 /**Expands to the maximum tuple size supported by the library.
*/ -#define BOOST_PP_LIMIT_TUPLE 16 +#define BOOST_PP_LIMIT_TUPLE 32 #endif diff --git a/include/boost/preprocessor/tuple.hpp b/include/boost/preprocessor/tuple.hpp index 0866bb4..3939eef 100644 --- a/include/boost/preprocessor/tuple.hpp +++ b/include/boost/preprocessor/tuple.hpp @@ -24,9 +24,9 @@ constitutes a single macro parameter.Examples of tuples:
-(const, volatile) // 2-tuple -(*, /, %) // 3-tuple -(1, "2", '3', (4,5)) // 4-tuple +(const, volatile) /* 2-tuple */ +(*, /, %) /* 3-tuple */ +(1, "2", '3', (4,5)) /* 4-tuple */
Tuples can be used for representing structured data.