mirror of https://github.com/OpenTTD/OpenTTD
(svn r26835) -Fix [Squirrel]: remove dead code from the lexer
parent
7176f65edf
commit
0d0c4461ce
|
@ -156,11 +156,9 @@ SQInteger SQLexer::Lex()
|
||||||
case '=':
|
case '=':
|
||||||
NEXT();
|
NEXT();
|
||||||
RETURN_TOKEN(TK_DIVEQ);
|
RETURN_TOKEN(TK_DIVEQ);
|
||||||
continue;
|
|
||||||
case '>':
|
case '>':
|
||||||
NEXT();
|
NEXT();
|
||||||
RETURN_TOKEN(TK_ATTR_CLOSE);
|
RETURN_TOKEN(TK_ATTR_CLOSE);
|
||||||
continue;
|
|
||||||
default:
|
default:
|
||||||
RETURN_TOKEN('/');
|
RETURN_TOKEN('/');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue