diff --git a/src/lexer.rs b/src/lexer.rs index b4d0bd3..85f287d 100644 --- a/src/lexer.rs +++ b/src/lexer.rs @@ -50,7 +50,7 @@ where } fn read_integer(&mut self, radix: u32) -> Option { - match u32::from_str_radix(self.scanner.by_ref().take_while(|c| c.is_digit(radix)).collect::().to_owned().as_str(), radix) { + match u32::from_str_radix(self.scanner.by_ref().take_while(|c| c.is_digit(radix)).collect::().as_str(), radix) { Ok(result) => Some(result), Err(e) => { eprintln!("Failed to read DecimalIntgegerLiteral: {e}");