From e528248c59cde199869e29d65a9f6fc415516140 Mon Sep 17 00:00:00 2001 From: "Roman D. Boiko" Date: Thu, 26 Apr 2012 11:58:47 +0300 Subject: [PATCH] Fixed a small bug in lexDecimal --- tokenizer.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tokenizer.d b/tokenizer.d index 3fb9142..b9b0fc3 100644 --- a/tokenizer.d +++ b/tokenizer.d @@ -407,10 +407,10 @@ pure nothrow void lexDecimal(S)(ref S inputString, size_t startIndex, case 'L': if (isLong) break decimalLoop; - ++endIndex; - lexingSuffix = true; if (isReal) break decimalLoop; + ++endIndex; + lexingSuffix = true; if (isDouble) token.type = TokenType.realLiteral; else if (isUnsigned)