Skip to content

Commit 9859c05

Browse files
krnl32slouken
authored andcommitted
Added a default case to the switch statement in the HEADER FILE to prevent compiler warnings about missing defaults. This change helps avoid compilation breaks when warnings are treated as errors.
1 parent 07c3b3f commit 9859c05

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/SDL_stdinc.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -584,6 +584,7 @@ SDL_FORCE_INLINE void SDL_memset4(void *dst, Uint32 val, size_t dwords)
584584
return;
585585
}
586586
switch (dwords % 4) {
587+
default:
587588
case 0: do { *_p++ = _val; SDL_FALLTHROUGH;
588589
case 3: *_p++ = _val; SDL_FALLTHROUGH;
589590
case 2: *_p++ = _val; SDL_FALLTHROUGH;

0 commit comments

Comments
 (0)