MISRA C++:2023 Rule 13.3.2
Parameters in an overriding virtual function shall not specify different default arguments
Since R2024b
Description
Rule Definition
Parameters in an overriding virtual function shall not specify different default arguments.
Rationale
If the default parameter of a virtual function is different in an overriding function, then the function call uses different values when invoked using different classes of a hierarchy. Such behavior is unexpected for a class hierarchy. Consider this class hierarchy:
class Base{ public: virtual foo(int x = 0); //... }; class Derived: public Base{ public: virtual foo(int x = 1) override; //Noncompliant };
foo()
has different default
parameters depending on whether base::foo()
or
Derived::foo()
is invoked. This behavior is unexpected and can
result in unexpected results.Polyspace Implementation
Polyspace® reports a violation of this rule if an overriding virtual function has a different default parameter compared to the virtual function it overrides. This includes situations where the overriding virtual function has a default parameter, but the base virtual function does not have a default parameter. Polyspace does not report violations when overriding virtual functions specify no default parameters.
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: Derived Classes |
Category: Required |
Version History
Introduced in R2024b