Commit 6b642637 authored by Jose Narvaez's avatar Jose Narvaez

Fixed dead assignment in 'parser.y' reported by 'clang-analyzer'

parent 1a8e0ba4
......@@ -4537,7 +4537,7 @@ parser_yylex(parser_state *p)
is_float = seen_point = seen_e = nondigit = 0;
p->lstate = EXPR_END;
token_column = newtok(p);
newtok(p);
if (c == '-' || c == '+') {
tokadd(p, c);
c = nextc(p);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment