Skip to content

Commit 8a07083

Browse files
committedJan 13, 2025
Avoid formatting colisions
1 parent a20839c commit 8a07083

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎c/misra/test/c/misra/test.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ void testControlChar() {
8282
}
8383

8484
#include <stdint.h>
85-
86-
void testBitwise() {
85+
// clang-format off
86+
void testBitwise() { // Clang format disabled to avoid confusion with variable declarations
8787
uint8_t u8 = 0;
8888
uint16_t u16 = 0;
8989
uint32_t u32 = 0;
@@ -160,7 +160,7 @@ void testBitwise() {
160160
u8 ^ s8; // Essentially signed, int
161161
s8 ^ u8; // Essentially signed, int
162162
}
163-
163+
// clang-format on
164164
void testShifts() {
165165
int32_t s32 = 1;
166166

0 commit comments

Comments
 (0)