Fix the fallout
This commit is contained in:
parent
09f53fd45c
commit
b1cd76906a
9 changed files with 38 additions and 38 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue