From b36731a3d9ed2afb22e10bab69b24b3f5c44bcb2 Mon Sep 17 00:00:00 2001
From: Vesa Karvonen
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.