bevy/crates/bevy_ecs/macros/src
Jakob Hellermann 49ff42cc69 fix new clippy lints (#5160)
# Objective

- Nightly clippy lints should be fixed before they get stable and break CI
  
## Solution

- fix new clippy lints
- ignore `significant_drop_in_scrutinee` since it isn't relevant in our loop https://github.com/rust-lang/rust-clippy/issues/8987
```rust
for line in io::stdin().lines() {
    ...
}
```

Co-authored-by: Jakob Hellermann <hellermann@sipgate.de>
2022-07-01 13:41:23 +00:00
..
component.rs small and mostly pointless refactoring (#2934) 2022-02-13 22:33:55 +00:00
fetch.rs fix new clippy lints (#5160) 2022-07-01 13:41:23 +00:00
lib.rs Make derived SystemParam readonly if possible (#4650) 2022-05-09 16:09:33 +00:00