Fixed a small bug in lexDecimal

This commit is contained in:
Roman D. Boiko 2012-04-26 11:58:47 +03:00
parent 18889620b5
commit e528248c59
1 changed files with 2 additions and 2 deletions

View File

@ -407,10 +407,10 @@ pure nothrow void lexDecimal(S)(ref S inputString, size_t startIndex,
case 'L': case 'L':
if (isLong) if (isLong)
break decimalLoop; break decimalLoop;
++endIndex;
lexingSuffix = true;
if (isReal) if (isReal)
break decimalLoop; break decimalLoop;
++endIndex;
lexingSuffix = true;
if (isDouble) if (isDouble)
token.type = TokenType.realLiteral; token.type = TokenType.realLiteral;
else if (isUnsigned) else if (isUnsigned)