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

This commit is contained in:
Jose Narvaez
2014-06-13 12:11:28 +01:00
parent 1a8e0ba4e8
commit 6b642637b3
+1 -1
View File
@@ -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);