diff --git a/std/d/lexer.d b/std/d/lexer.d index b934514..7ac07ad 100644 --- a/std/d/lexer.d +++ b/std/d/lexer.d @@ -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.