23-08-2006, 10:29 AM
MISRA-C meeting 23-8-2006
From page 43
Either casting or use of U is acceptable.
From page 43
Code:
... u8a + 5 /* not compliant */
... u8a + 5U /* compliant */
... u8a + (uint8_t)5 /* compliant */
Either casting or use of U is acceptable.
Posted by and on behalf of the MISRA C Working Group