XIEITE_WRAP()

Defined in header
<xieite/pp/wrap.hpp>

Wraps an expression in parentheses.


Definition

#define XIEITE_WRAP(...) (__VA_ARGS__)


Example

XIEITE_WRAP(1, '2', x)
Preprocessor output:
(1, '2', x)
[View in Compiler Explorer]