You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sanitize math with derived-type-operators.
Why:
Derived type operators does not respect intrinsic operators precedence,
e.g. in `a + b * c` is not ensured that `d= b * c` is computed first and
only then `a + d` is done.
This change addresses the need by:
Adding parenthesis when necessary.
Side effects:
Nothing.
0 commit comments