From b36731a3d9ed2afb22e10bab69b24b3f5c44bcb2 Mon Sep 17 00:00:00 2001 From: Vesa Karvonen Date: Thu, 20 Jun 2002 13:31:55 +0000 Subject: [PATCH] Removed // comments from comment (to emphasize C compatibility) [SVN r14211] --- include/boost/preprocessor/limits.hpp | 2 +- include/boost/preprocessor/tuple.hpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) 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.