bevy/crates/bevy_window/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
..
cursor.rs Add documentation comments to bevy_window (#4333) 2022-06-16 13:20:37 +00:00
event.rs Update MouseMotion and CursorMoved docs (#5090) 2022-06-26 13:40:43 +00:00
lib.rs Add documentation comments to bevy_window (#4333) 2022-06-16 13:20:37 +00:00
raw_window_handle.rs Improve docs and naming for RawWindowHandle functionality (#4335) 2022-05-26 00:09:23 +00:00
system.rs Allow closing windows at runtime (#3575) 2022-05-05 13:35:43 +00:00
window.rs fix new clippy lints (#5160) 2022-07-01 13:41:23 +00:00
windows.rs Add documentation comments to bevy_window (#4333) 2022-06-16 13:20:37 +00:00