Hi,
Can I use some conditional operator to select a part of code to be expanded.
What I meant was... Can I do something like this..
#define func(arg1) \
if arg1 == abc\ \* this line should not expand but just test*\
some code\
else\ \* this line should not expand but just test*\
some other code
Thanks
Can I use some conditional operator to select a part of code to be expanded.
What I meant was... Can I do something like this..
#define func(arg1) \
if arg1 == abc\ \* this line should not expand but just test*\
some code\
else\ \* this line should not expand but just test*\
some other code
Thanks
Comment