I have confusion on following c code

#define MACRO (xx) \
foo(xx)
...    
#ifdef A
return MACRO(a);
#endif
...

The source can not compile. But when I change definition to

#define MACRO \
foo(a)

So if I want to use MACRO with argument in this case, how should I do? Thanks..

link|improve this question

feedback

1 Answer

up vote 9 down vote accepted

Remove the space between MACRO and (xx).

If you leave the space there, the preprocessor doesn't treat (xx) as the argument, but as part of the expansion. So whenever it sees MACRO, it replaces it with (xx) foo(xx).

link|improve this answer
1  
I hope there are no kids reading SO... – R.. Jan 28 '11 at 22:53
(^^) hope so too – mathk Jan 28 '11 at 23:54
@R.. @mathk Don't I count as a "kid"? – muntoo Jan 29 '11 at 5:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.