Macro replacement lists should be parenthesized to protect any lower-precedence operators from the surrounding expression. See also PRE00-CA. Prefer inline or static functions to function-like macros and PRE01-C.
Non-Compliant Code Example
...
This compliant solution violates PRE00-CA. Prefer inline or static functions to function-like macros. Consequently, this solution would be better implemented as an inline function.
...