mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fixed dead assignment in 'parser.y' reported by 'clang-analyzer'
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user