From f0e8e848ab8004050e95efaa19d756fe58d0c0c9 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Tue, 4 Mar 2014 22:47:14 -0800 Subject: [PATCH] Fix problem with suffixed number literals --- analysis/range.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/analysis/range.d b/analysis/range.d index 20a5026..a9e911c 100644 --- a/analysis/range.d +++ b/analysis/range.d @@ -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; } }