Closed GoogleCodeExporter closed 8 years ago
Using last version and compiling with -O0 makes no difference.
Original comment by Kunyavs...@gmail.com
on 29 Dec 2011 at 2:41
[deleted comment]
It can be improved by
-for (char c = prev; c <= next; c++)
+for (char c = prev; c != next; c++)
result.push_back(c);
+result.push_back(next)
in __pattern_scanCharSet
Original comment by Kunyavs...@gmail.com
on 29 Dec 2011 at 3:26
Fixed in 0.7.3
Original comment by mirzayan...@gmail.com
on 29 Dec 2011 at 4:20
Original issue reported on code.google.com by
Kunyavs...@gmail.com
on 29 Dec 2011 at 2:33