Removed // comments from comment (to emphasize C compatibility)

[SVN r14211]
This commit is contained in:
Vesa Karvonen 2002-06-20 13:31:55 +00:00
parent 58f88acce6
commit b36731a3d9
2 changed files with 4 additions and 4 deletions

View File

@ -40,5 +40,5 @@ BOOST_PP_REPEAT() and BOOST_PP_REPEAT_FROM_TO()).</p>
#define BOOST_PP_LIMIT_MAG 128
/** <p>Expands to the maximum tuple size supported by the library.</p> */
#define BOOST_PP_LIMIT_TUPLE 16
#define BOOST_PP_LIMIT_TUPLE 32
#endif

View File

@ -24,9 +24,9 @@ constitutes a single macro parameter.</p>
<p>Examples of tuples:</p>
<pre>
(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 */
</pre>
<p>Tuples can be used for representing structured data.</p>