Cargo fuzz build report an warning: warning: unnecessary parentheses around closure body --> virtio-devices/src/iommu.rs:578:41 | 578 |.retain(|&x, _| (x < req.virt_start || x > req.virt_end)); | ^ | = note: `#[warn(unused_parens)]` on by default help: remove these parentheses | 578 -.retain(|&x, _| (x < req.virt_start || x > req.virt_end)); 578 +.retain(|&x, _| x < req.virt_start || x > req.virt_end); | warning: `virtio-devices` (lib) generated 1 warning (run `cargo fix --lib -p virtio-devices` to apply 1 suggestion) Signed-off-by: Muminul Islam <muislam@microsoft.com> |
||
|---|---|---|
| .. | ||
| src | ||
| build.rs | ||
| Cargo.toml | ||