Fixed a small bug in lexDecimal
This commit is contained in:
parent
18889620b5
commit
e528248c59
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue