From ec57809ec9a9f7e575b6ac940666add6ef78af8e Mon Sep 17 00:00:00 2001 From: qchikara Date: Thu, 21 Mar 2013 01:44:17 +0900 Subject: [PATCH] Fix: Token#opEquals(TokenType) never returns false opEquals(TokenType) never returns false because its argument shadows the corresponding field. --- std/d/lexer.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.