Synopsis: | Do not use mixed comments. |
Language: | C |
Severity Level: | 8 |
Category: | Lexical Elements |
Description: |
Justification Some editors are not able to parse mixed comments (C and C++ style) correctly, thus displaying the entire file as being one comment if this occurs in the header block. Example //*********************************************** /* WRONG */ //----------------------------------------------- /* RIGHT */ |