AUTOSAR C++14 Rule M6-4-2
All if ... else if constructs shall be terminated with an else clause
Description
Rule Definition
All if ... else if constructs shall be terminated with an else clause.
Rationale
Ending an if... else if construct with an else
statement is defensive
programming. This final else
statement acts as a fail-safe in case a
unique situation occurs where the code progresses past the if
and
else if
statements.
When an if
statement is followed by one or more else
if
statements, follow the final else if
statement with an
else
statement. Within the else
statement provide an
action. If no action is needed, provide a comment as to why no action is taken.
Polyspace Implementation
Polyspace® raises this defect whenever an if … else if
construct does
not end with an else
statement.
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: Statements |
Category: Required, Automated |
Version History
Introduced in R2019a