Skip to content

Commit

Permalink
Fix clang-format error
Browse files Browse the repository at this point in the history
  • Loading branch information
Watson1978 committed Jul 2, 2023
1 parent 9fa0d5e commit 026afdd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ext/oj/parse.c
Original file line number Diff line number Diff line change
Expand Up @@ -709,9 +709,7 @@ void oj_parse2(ParseInfo pi) {
case '[': array_start(pi); break;
case ']': array_end(pi); break;
case ',': comma(pi); break;
case '"':
read_str(pi);
break;
case '"': read_str(pi); break;
case '+':
if (CompatMode == pi->options.mode) {
oj_set_error_at(pi, oj_parse_error_class, __FILE__, __LINE__, "unexpected character");
Expand Down

0 comments on commit 026afdd

Please sign in to comment.