AUTOSAR C++14 Rule M4-5-1
Expressions with type bool shall not be used as operands to built-in operators other than the assignment operator =, the logical operators &&, ||, !, the equality operators == and ! =, the unary & operator, and the conditional operator
Description
Rule Definition
Expressions with type bool shall not be used as operands to built-in operators other than the assignment operator =, the logical operators &&, ||, !, the equality operators == and ! =, the unary & operator, and the conditional operator.
Rationale
Operators other than the ones mentioned in the rule do not produce meaningful
results with bool
operands. Use of bool
operands with these operators can indicate programming errors. For instance, you
intended to use the logical operator ||
but used the bitwise
operator |
instead.
Polyspace Implementation
Polyspace® reports a violation of this rule if a boolean type is used as operands to operators other than these:
=
&&
||
!
==
!=
unary
&
and?
Troubleshooting
If you expect a rule violation but Polyspace does not report it, see Diagnose Why Coding Standard Violations Do Not Appear as Expected.
Examples
Check Information
Group: Standard Conversions |
Category: Required, Automated |