2021-12-17 12:40:22 +00:00
|
|
|
error: unnecessary use of `copied`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_iter_cloned.rs:29:22
|
2021-12-17 12:40:22 +00:00
|
|
|
|
|
|
|
|
LL | for (t, path) in files.iter().copied() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::unnecessary-to-owned` implied by `-D warnings`
|
2023-08-01 12:02:21 +00:00
|
|
|
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_to_owned)]`
|
2021-12-17 12:40:22 +00:00
|
|
|
help: use
|
|
|
|
|
|
|
|
|
LL | for (t, path) in files {
|
|
|
|
| ~~~~~
|
|
|
|
help: remove this `&`
|
|
|
|
|
|
|
|
|
LL - let other = match get_file_path(&t) {
|
|
|
|
LL + let other = match get_file_path(t) {
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2021-12-17 12:40:22 +00:00
|
|
|
|
|
|
|
error: unnecessary use of `copied`
|
2024-02-17 12:16:29 +00:00
|
|
|
--> tests/ui/unnecessary_iter_cloned.rs:44:22
|
2021-12-17 12:40:22 +00:00
|
|
|
|
|
|
|
|
LL | for (t, path) in files.iter().copied() {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
help: use
|
|
|
|
|
|
|
|
|
LL | for (t, path) in files.iter() {
|
|
|
|
| ~~~~~~~~~~~~
|
|
|
|
help: remove this `&`
|
|
|
|
|
|
|
|
|
LL - let other = match get_file_path(&t) {
|
|
|
|
LL + let other = match get_file_path(t) {
|
2022-06-15 11:15:54 +00:00
|
|
|
|
|
2021-12-17 12:40:22 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|