Is there a way in gcc/g++ 4.* to write a macro that expands into several lines?
The following code:
#define A X Y
Expands into
X Y
I need a macro expanding into
X
Y
See Question&Answers more detail:osIs there a way in gcc/g++ 4.* to write a macro that expands into several lines?
The following code:
#define A X Y
Expands into
X Y
I need a macro expanding into
X
Y
See Question&Answers more detail:os