Merge pull request #36 from qchikara/range-based-lexer

Fix: Token#opEquals(TokenType) never returns false
This commit is contained in:
Hackerpilot 2013-03-21 10:50:48 -07:00
commit bd9ec03707
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ struct Token
/**
* Checks to see if the token is of the given type.
*/
bool opEquals(TokenType type) const { return type == type; }
bool opEquals(TokenType type) const { return this.type == type; }
/**
* Comparison operator orders tokens by start index.