Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Edited by sciSpider $version (sch jbop) (X_X)@==(Q_Q)@

Macro replacement lists should be parenthesized to protect any lower-precedence operators from the surrounding expression. See also PRE00-C. Prefer inline or static functions to function-like functionlike macros and PRE01-C. Use parentheses within macros around parameter names.

...

This compliant solution violates PRE00-C. Prefer inline or static functions to function-like functionlike macros. Consequently, this solution would be better implemented as an inline function.

...