Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warning: this expression borrows a value the compiler would automatically borrow --> src/cmd/extsort.rs:233:52 | 233 | let Ok(position) = atoi_simd::parse::<u64>((&line[line.len() - width..]).as_bytes()) else { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `line[line.len() - width..]` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow = note: `#[warn(clippy::needless_borrow)]` on by default
- Loading branch information