This commit is contained in:
Stephen Chung
2021-12-18 17:47:35 +08:00
parent 9736171089
commit 7eda6454a8
2 changed files with 8 additions and 3 deletions

View File

@@ -1516,9 +1516,7 @@ fn get_next_token_inner(
} else {
let out: String =
result.iter().filter(|&&c| c != NUMBER_SEPARATOR).collect();
let num = INT_BASE::from_str(&out)
.map(|v| v as INT)
.map(Token::IntegerConstant);
let num = INT::from_str(&out).map(Token::IntegerConstant);
// If integer parsing is unnecessary, try float instead
#[cfg(not(feature = "no_float"))]