Main Content
MISRA C++:2023 Rule 5.7.1
Description
Rule Definition
The character sequence /*
shall not be used within a C-style
comment.
Rationale
If your code contains a /*
in a C-style comment (comment with /* */
), it typically means that you have inadvertently commented out code. In particular, nesting of comments is not supported in C and might lead to unexpected errors.
Polyspace Implementation
The rule checker reports violations if the character /*
appears within a C-style comment.
You cannot justify a violation of this rule using source code annotations.
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: Lexical Conventions |
Category: Required |
Version History
Introduced in R2024b