Macro replacement lists should be parenthesized to protect any lower-precedence operators from the surrounding expression. See also PRE00-A. Prefer inline or static functions to function-like macrosC and PRE01-A. Use parentheses within macros around parameter names.
...
This compliant solution violates PRE00-A. Prefer inline or static functions to function-like macrosC. Consequently, this solution would be better implemented as an inline function.
...