1
Fork 0

Fix the fallout

This commit is contained in:
Vadim Petrochenkov 2015-02-15 00:10:19 +03:00
parent 09f53fd45c
commit b1cd76906a
9 changed files with 38 additions and 38 deletions

View file

@ -422,7 +422,7 @@ impl<'a> Parser<'a> {
Some((_, c)) => {
match c.to_digit(10) {
Some(i) => {
cur = cur * 10 + i;
cur = cur * 10 + i as usize;
found = true;
self.cur.next();
}