mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-29 11:47:14 +02:00
Minor changes.
[SVN r12206]
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user