33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<html>
|
|
<head>
|
|
<title>BOOST_PP_COMMA</title>
|
|
<link rel="stylesheet" type="text/css" href="../styles.css">
|
|
</head>
|
|
<body>
|
|
<div style="margin-left: 0px;">
|
|
The <b>BOOST_PP_COMMA</b> macro expands to a comma.
|
|
</div>
|
|
<h4>Usage</h4>
|
|
<div class="code">
|
|
<b>BOOST_PP_COMMA</b>()
|
|
</div>
|
|
<h4>Remarks</h4>
|
|
<div>
|
|
The preprocessor interprets commas as argument separators in macro invocations.
|
|
Because of this, commas require special handling.
|
|
</div>
|
|
<h4>Requirements</h4>
|
|
<div>
|
|
<b>Header:</b> <a href="../headers/punctuation/comma.hpp.html"><boost/preprocessor/punctuation/comma.hpp></a>
|
|
</div>
|
|
<h4>Sample Code</h4>
|
|
<div><pre>
|
|
#include <<a href="../headers/control/if.hpp.html">boost/preprocessor/control/if.hpp</a>>
|
|
#include <<a href="../headers/facilities/empty.hpp.html">boost/preprocessor/facilities/empty.hpp</a>>
|
|
#include <<a href="../headers/punctuation/comma.hpp.html">boost/preprocessor/punctuation/comma.hpp</a>>
|
|
|
|
<a href="if.html">BOOST_PP_IF</a>(1, <a href="comma.html">BOOST_PP_COMMA</a>, <a href="empty.html">BOOST_PP_EMPTY</a>)() // expands to ,
|
|
</pre></div>
|
|
</body>
|
|
</html>
|