vote up 1 vote down star

I've seen the following construct (with false replacing 0 in C++) in a lot of code (it's all over the linux kernel, for example).


#define myMacro( x ) do { something(x); } while (0);

Why is this construct used instead of the less cluttered:

#define myMacro( x ) something(x)
flag
This is a dupe of stackoverflow.com/questions/257418/…. – Robert Gamble Nov 12 '08 at 1:41
Which is itself a dupe of stackoverflow.com/questions/154136/… (but not closed). – paxdiablo Nov 12 '08 at 1:43

closed as exact duplicate by Robert Gamble Nov 12 '08 at 1:41

Browse other questions tagged or ask your own question.