XTE_UNWRAP()

Defined in header <xte/preproc/unwrap.hpp>

Unwraps an expression from surrounding parentheses.


Definition

#define XTE_UNWRAP(...) /* ... */



Example

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