Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

PRE01-EX1: When the parameter names are surrounded by commas in the replacement text, regardless of how complicated the actual arguments are, there is no need for parenthesizing the macro parameters. Because commas have lower precedence than any other operator, there is no chance of the actual arguments being parsed in a surprising way. Also, comma separators, which separate arguments in a function call, also have lower precedence than other operators, although they are technically different than comma operators.

Code Block
#define FOO(a, b, c) bar(a, b, c)
/* ... */
FOO(arg1, arg2, arg3);

...