Skip to content

Commit 595bbe6

Browse files
authored
Fix "comma at end of enumerator list" warning in C++98 projects (#24301)
1 parent 9750ca5 commit 595bbe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/include/SDL/SDL_assert.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ typedef enum
9999
SDL_ASSERTION_BREAK, /**< Make the debugger trigger a breakpoint. */
100100
SDL_ASSERTION_ABORT, /**< Terminate the program. */
101101
SDL_ASSERTION_IGNORE, /**< Ignore the assert. */
102-
SDL_ASSERTION_ALWAYS_IGNORE, /**< Ignore the assert from now on. */
102+
SDL_ASSERTION_ALWAYS_IGNORE /**< Ignore the assert from now on. */
103103
} SDL_assert_state;
104104

105105
typedef struct SDL_assert_data

0 commit comments

Comments
 (0)