Fix problem with suffixed number literals
This commit is contained in:
parent
020137cb94
commit
f0e8e848ab
|
@ -72,12 +72,12 @@ class BackwardsRangeCheck : BaseAnalyzer
|
||||||
{
|
{
|
||||||
line = primary.primary.line;
|
line = primary.primary.line;
|
||||||
this.column = primary.primary.column;
|
this.column = primary.primary.column;
|
||||||
left = to!long(primary.primary.text.removechars("_"));
|
left = to!long(primary.primary.text.removechars("_uUlL"));
|
||||||
hasLeft = true;
|
hasLeft = true;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
right = to!long(primary.primary.text.removechars("_"));
|
right = to!long(primary.primary.text.removechars("_uUlL"));
|
||||||
hasRight = true;
|
hasRight = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue