Skip to content

Commit

Permalink
change *++exprp to *(++exprp)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwendt committed Jan 12, 2022
1 parent baf2250 commit 377ab9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/strings/regex/regcomp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ class regex_parser {
char32_t c = *exprp;
while (c >= '0' && c <= '7') {
yy = (yy << 3) | (c - '0');
c = *++exprp;
c = *(++exprp);
}
return CHAR;
} else {
Expand Down

0 comments on commit 377ab9d

Please sign in to comment.