Skip to content

Commit

Permalink
Update impl_json.h
Browse files Browse the repository at this point in the history
  • Loading branch information
recp committed Dec 1, 2019
1 parent 269cc45 commit 2d0fc2f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/json/impl/impl_json.h
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,8 @@ json_parse(const char * __restrict contents, bool reverse) {
}

/* skip trailing quote */
c = *++p;
/* c = *++p; */
++p;
} else {
while (c != ',' && c != '{' && c != '}' && c != '[' && c != ']') {
if (c == '\0')
Expand Down

0 comments on commit 2d0fc2f

Please sign in to comment.