Fix: Token#opEquals(TokenType) never returns false

opEquals(TokenType) never returns false because its argument shadows the corresponding field.
This commit is contained in:
qchikara 2013-03-21 01:44:17 +09:00
parent aa406c76f2
commit ec57809ec9
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.