Fix problem with suffixed number literals

This commit is contained in:
Hackerpilot 2014-03-04 22:47:14 -08:00
parent 020137cb94
commit f0e8e848ab
1 changed files with 2 additions and 2 deletions

View File

@ -72,12 +72,12 @@ class BackwardsRangeCheck : BaseAnalyzer
{
line = primary.primary.line;
this.column = primary.primary.column;
left = to!long(primary.primary.text.removechars("_"));
left = to!long(primary.primary.text.removechars("_uUlL"));
hasLeft = true;
}
else
{
right = to!long(primary.primary.text.removechars("_"));
right = to!long(primary.primary.text.removechars("_uUlL"));
hasRight = true;
}
}