forked from AbleOS/holey-bytes
fixing integer parsing bug
This commit is contained in:
parent
894f73ca35
commit
3807276a55
|
@ -398,10 +398,10 @@ impl<'a, 'b> Parser<'a, 'b> {
|
|||
};
|
||||
E::Number {
|
||||
pos: token.start,
|
||||
value: match i64::from_str_radix(slice, radix as u32) {
|
||||
value: match u64::from_str_radix(slice, radix as u32) {
|
||||
Ok(value) => value,
|
||||
Err(e) => self.report(format_args!("invalid number: {e}")),
|
||||
},
|
||||
} as i64,
|
||||
radix,
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue