MISRA Discussion Forums

Full Version: Incorrect example for rule 6.3?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

TC1 has following sentence:

Quote:This rule is inappropriate (plain) char


But the mc2_0603.c has following example:

Quote:char character63; /* Not Compliant */


In my opinion this code is compliant with TC1?
Code:
char character63; /* Not Compliant */
TC1 relaxed rule 6.3 so that it no longer applies to type char.
You are correct - this line is compliant with this rule.