From e5c71298031e69bd2cadfd560890a8a1c83c4f91 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Sat, 11 May 2013 14:18:15 +0000 Subject: [PATCH] Fixed compile error --- std/d/lexer.d | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/std/d/lexer.d b/std/d/lexer.d index 47d0191..fac9bf2 100755 --- a/std/d/lexer.d +++ b/std/d/lexer.d @@ -2180,12 +2180,12 @@ enum TokenType: ushort while_, /// $(D_KEYWORD while) with_, /// $(D_KEYWORD with) - specialDate, /// ___DATE__ - specialEof, /// ___EOF__ - specialTime, /// ___TIME__ - specialTimestamp, /// ___TIMESTAMP__ - specialVendor, /// ___VENDOR__ - specialVersion, /// ___VERSION__ + specialDate, /// $(D_KEYWORD ___DATE__) + specialEof, /// $(D_KEYWORD ___EOF__) + specialTime, /// $(D_KEYWORD ___TIME__) + specialTimestamp, /// $(D_KEYWORD ___TIMESTAMP__) + specialVendor, /// $(D_KEYWORD ___VENDOR__) + specialVersion, /// $(D_KEYWORD ___VERSION__) specialFile, /// $(D_KEYWORD ___FILE__) specialLine, /// $(D_KEYWORD ___LINE__) specialModule, /// $(D_KEYWORD ___MODULE__) @@ -2913,6 +2913,7 @@ pure TokenType lookupTokenType(R)(R input) case '_': if (input[1..$].equal("_FUNCTION__")) return TokenType.specialFunction; else break; default: break; } + break; case 13: if (input[1..$].equal("_TIMESTAMP__")) return TokenType.specialTimestamp;