XTE_SCAN()

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

Expands the given expression.


Definition

#define XTE_SCAN(...) __VA_ARGS__



Example

#define FOO() 0
#define NOTHING

FOO NOTHING()
XTE_SCAN(FOO NOTHING())
Preprocessor output:
FOO()
0
[View in Compiler Explorer]