mirror of
https://github.com/boostorg/preprocessor.git
synced 2025-07-15 21:42:08 +02:00
44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
![]() |
<html>
|
||
|
<head>
|
||
|
<title>BOOST_PP_RPAREN</title>
|
||
|
<link rel="stylesheet" type="text/css" href="../styles.css">
|
||
|
<script language="javascript" type="text/javascript" src="../scripts.js"></script>
|
||
|
</head>
|
||
|
<body onload="init('sample');">
|
||
|
<div style="margin-left: 0px;">
|
||
|
The <b>BOOST_PP_RPAREN</b> macro expands to a right parenthesis.
|
||
|
</div>
|
||
|
<h4>Usage</h4>
|
||
|
<div class="code">
|
||
|
<b>BOOST_PP_RPAREN</b>()
|
||
|
</div>
|
||
|
<h4>Remarks</h4>
|
||
|
<div>
|
||
|
The preprocessor interprets parentheses as delimiters in macro invocations.
|
||
|
Because of this, parentheses require special handling.
|
||
|
</div>
|
||
|
<h4>See Also</h4>
|
||
|
<ul>
|
||
|
<li><a href="lparen.html">BOOST_PP_LPAREN</a></li>
|
||
|
</ul>
|
||
|
<h4>Requirements</h4>
|
||
|
<div>
|
||
|
<b>Header:</b> <a href="../headers/punctuation/paren.hpp.html"><boost/preprocessor/punctuation/paren.hpp></a>
|
||
|
</div>
|
||
|
<h4><a class="local" onclick="toggle('sample');" onmouseover="change(this);" onmouseout="revert(this);">Sample Code</a></h4>
|
||
|
<div id="sample"><pre>
|
||
|
#include <boost/preprocessor/facilities/empty.hpp>
|
||
|
#include <boost/preprocessor/punctuation/paren.hpp>
|
||
|
|
||
|
#define X(x) x
|
||
|
#define MACRO(x, p) X ( x p
|
||
|
|
||
|
MACRO(abc, BOOST_PP_RPAREN()) // expands to abc
|
||
|
|
||
|
#define Y(x)
|
||
|
|
||
|
MACRO(BOOST_PP_EMPTY BOOST_PP_RPAREN()(), 10) // expands to 10
|
||
|
<pre></div>
|
||
|
</body>
|
||
|
</html>
|