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

This commit is contained in:
Jose Narvaez
2014-06-13 12:06:56 +01:00
parent 13abc9c4a1
commit a250050077
-1
View File
@@ -5159,7 +5159,6 @@ parser_yylex(parser_state *p)
{
int result = 0;
last_state = p->lstate;
switch (tok(p)[0]) {
case '$':
p->lstate = EXPR_END;