1
0
Fork 0

(svn r26835) -Fix [Squirrel]: remove dead code from the lexer

release/1.5
rubidium 2014-09-16 20:07:47 +00:00
parent 7176f65edf
commit 0d0c4461ce
1 changed files with 0 additions and 2 deletions

View File

@ -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('/');
} }