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

@@ -645,7 +645,7 @@ impl<'a> StringReader<'a> {
/// Scan through any digits (base `radix`) or underscores, and return how
/// many digits there were.
fn scan_digits(&mut self, radix: usize) -> usize {
fn scan_digits(&mut self, radix: u32) -> usize {
let mut len = 0;
loop {
let c = self.curr;