1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 03:27:44 +00:00

fix(clippy): explicit_iter_loop

This commit is contained in:
Gabriele Belluardo 2025-06-16 23:22:28 +02:00
parent 19e04a26cf
commit dc72ad9242
No known key found for this signature in database
GPG key ID: 21671B8C89CCBF4F

View file

@ -363,7 +363,7 @@ fn parse_special_value<'a>(
("nan", ExtendedBigDecimal::Nan), ("nan", ExtendedBigDecimal::Nan),
]; ];
for (str, ebd) in MATCH_TABLE.iter() { for (str, ebd) in MATCH_TABLE {
if input_lc.starts_with(str) { if input_lc.starts_with(str) {
let mut special = ebd.clone(); let mut special = ebd.clone();
if negative { if negative {