Minor changes.

[SVN r12206]
This commit is contained in:
Vesa Karvonen
2002-01-03 14:56:18 +00:00
parent 1f2380191c
commit 5adad67c89
3 changed files with 6 additions and 10 deletions

View File

@ -37,18 +37,14 @@ Example:
BOOST_PP_TUPLE_ELEM(2,1,(A,B))
\endverbatim</PRE>
The above expands to:
<PRE>\verbatim
B
\endverbatim</PRE>
The above expands to B.
See also BOOST_PP_LIMIT_TUPLE.
*/
#define BOOST_PP_TUPLE_ELEM(N,I,T) BOOST_PP_TUPLE_ELEM_DELAY(N,I,T)
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#if defined(__MWERKS__) && __MWERKS__ <= 0x2406
#if !defined(BOOST_NO_COMPILER_CONFIG) && defined(__MWERKS__) && __MWERKS__ <= 0x2406
// This is a workaround for a CodeWarrior PP bug. Strictly speaking
// this workaround invokes undefined behavior, but it works as desired.
# define BOOST_PP_TUPLE_ELEM_DELAY(N,I,T) BOOST_PP_TUPLE##N##_ELEM##I##T