From 6b642637b3c7f3ebe8e290eadfd892030c57c993 Mon Sep 17 00:00:00 2001 From: Jose Narvaez Date: Fri, 13 Jun 2014 12:11:28 +0100 Subject: Fixed dead assignment in 'parser.y' reported by 'clang-analyzer' --- src/parse.y | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parse.y') diff --git a/src/parse.y b/src/parse.y index fc8eaa321..e88437602 100644 --- a/src/parse.y +++ b/src/parse.y @@ -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); -- cgit v1.2.3