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
@@ -4373,7 +4373,7 @@ parser_yylex(parser_state *p)
|
||||
p->lstate = EXPR_VALUE;
|
||||
return '?';
|
||||
}
|
||||
token_column = newtok(p);
|
||||
newtok(p);
|
||||
/* need support UTF-8 if configured */
|
||||
if ((isalnum(c) || c == '_')) {
|
||||
int c2 = nextc(p);
|
||||
|
||||
Reference in New Issue
Block a user