Try to suppress fallthrough warning.

This commit is contained in:
Dianne Skoll
2020-03-19 20:21:29 -04:00
parent 85f96e2e01
commit f1557b8243

View File

@@ -213,7 +213,7 @@ static int new_value (json_state * state,
}
#define whitespace \
case '\n': ++ state.cur_line; state.cur_col = 0; \
case '\n': ++ state.cur_line; state.cur_col = 0; /* FALLTHRU */ \
case ' ': case '\t': case '\r'
#define string_add(b) \