I come across macros that are defined as follows:

#define CALL_FUNCS(x)
do {
  func1(x);
  func2(x);
  func3(x);
} while (0);

now, of course this will work but how is this any better than the below version ?

#define CALL_FUNCS(x)
{
  func1(x);
  func2(x);
  func3(x);
}

I think it is not about macro optimization. Any thoughts on this ?

link|improve this question
The C++ FAQ has a good entry on this – Seth Carnegie Feb 8 at 20:17
Thanks Seth Carnegie, found the pointers: parashift.com/c++-faq-lite/misc-technical-issues.html#faq-39.5 – mav_2k Feb 9 at 5:30
feedback

migrated from serverfault.com Feb 8 at 20:14

This question came from our site for system administrators and desktop support professionals.

4 Answers

The macro actually should not have the final ;. This is to get normal / more expected and helpful syntax errors around macro if something is wrong.

link|improve this answer
feedback

First, it should not have the trailing ;. It should be:

#define CALL_FUNCS(x)    do { func1(x); func2(x); func3(x); } while (0)

Anyway, the reason is as follows. Consider

if(b)
     CALL_FUNCS(x);
else
     something_else(x);

This would expand to:

if(b)
     { func1(x); func2(x); func3(x); };
else
     something_else(x);

Now we still have a trailling ; and will get this error message:

error: ‘else’ without a previous ‘if’

Note, if you keep the ; in the macro, then you will have two trailing ;s!

Macro expansion should 'look' like something that expects a semicolon on the end. You're not going to type CALL_FUNCS(x), you're going to call CALL_FUNCS(x);. You can rely on do.. while(0) to slurp up the semicolon, but { } will not do so.

link|improve this answer
feedback

If you don't use the do ... while (0) form in an if-else statement you will get an error:

if (bla) CALL_FUNCS();
else statement;

would be preprocessed as:

if (bla)
{
  func1(x);
  func2(x);
  func3(x);
};
else statement;

The semi-colon before the else statement is invalid.

Note (as pointed out by @arsenm) that you should not put the final ; after the do ... while (0) in the macro definition and you have to and use \ after the lines in the definition:

#define CALL_FUNCS(x)  \
do {                   \
  func1(x);            \
  func2(x);            \
  func3(x);            \
} while (0)
link|improve this answer
@SethCarnegie, there are two trailing semicolons to consider. First, there is the incorrect extra semicolon at the end of the definition of the macro. But also look at how the macro is used; there is a semicolon in CALL_FUNCS(x); which won't disappear even if the second form is used. – Aaron McDaid Feb 8 at 20:24
feedback

This is used to force the user to add a ; after the macro invocation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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