Commit 1a8e0ba4 authored by Jose Narvaez's avatar Jose Narvaez

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

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