Skip to content

Commit

Permalink
EssentialType: Fix test comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lcartey committed Jan 13, 2025
1 parent 7a465dd commit 3fd82fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c/misra/test/c/misra/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ void testBitwise() {
s32 ^ s16; // Essentially signed, int
s16 ^ s32; // Essentially signed, int

u32 & s32; // Essentially signed, int
s32 & u32; // Essentially signed, int
u32 & s32; // Essentially unsigned, int
s32 & u32; // Essentially unsigned, int
u8 & s32; // Essentially signed, int
s32 & u8; // Essentially signed, int
u8 & s8; // Essentially signed, int
Expand Down

0 comments on commit 3fd82fd

Please sign in to comment.