Conversions shall not be performed between a pointer to a function and any other type
Conversions shall not be performed between a pointer to a function and any other type.
The rule forbids the following two conversions:
Conversion from a function pointer to any other type. This conversion causes undefined behavior.
Conversion from a function pointer to another function pointer, if the function pointers have different argument and return types.
The conversion is forbidden because calling a function through a pointer with incompatible type results in undefined behavior.
Polyspace® considers both explicit and implicit casts when
checking this rule. However, casts from NULL or (void*)0 do
not violate this rule.
If you expect a rule violation but do not see it, refer to the documentation of Polyspace Code Prover™ or Polyspace Code Prover Server™.
| Group: Pointer Type Conversions |
| Category: Required |
| AGC Category: Required |