bevy/crates/bevy_scene/src
Félix Lescaudey de Maneville a2b5d7a198
Fix some nightly warnings (#9672)
# Objective

Fix some nightly warnings found by running

`cargo +nightly clippy`

## Solution

Fix the following warnings:
- [x]
[elided_lifetimes_in_associated_constant](https://github.com/rust-lang/rust/issues/115010)
221986134d
- [x]
[unwrap_or_default](https://rust-lang.github.io/rust-clippy/master/index.html#/unwrap_or_default)
32e21c78f9
- [x]
[needless_pass_by_ref_mut](https://rust-lang.github.io/rust-clippy/master/index.html#/needless_pass_by_ref_mut)
c85d6d4a10

There is no breaking change, some internal `bevy_ecs` code no longer
uses a few mutable references but I don't think it should cause any
regression or be performance sensitive, but there might be some ECS
magic I'm unaware of that could break because of those changes
2023-09-02 18:35:06 +00:00
..
bundle.rs Split ComputedVisibility into two components to allow for accurate change detection and speed up visibility propagation (#9497) 2023-09-01 13:00:18 +00:00
dynamic_scene_builder.rs bevy_scene: Add SceneFilter (#6793) 2023-07-06 21:04:26 +00:00
dynamic_scene.rs Replaced EntityMap with HashMap (#9461) 2023-08-28 17:18:16 +00:00
lib.rs Add SceneInstanceReady (#9313) 2023-08-15 19:45:01 +00:00
scene_filter.rs bevy_scene: Add SceneFilter (#6793) 2023-07-06 21:04:26 +00:00
scene_loader.rs Move AppTypeRegistry to bevy_ecs (#8901) 2023-06-21 17:25:01 +00:00
scene_spawner.rs Fix some nightly warnings (#9672) 2023-09-02 18:35:06 +00:00
scene.rs Replaced EntityMap with HashMap (#9461) 2023-08-28 17:18:16 +00:00
serde.rs Replaced EntityMap with HashMap (#9461) 2023-08-28 17:18:16 +00:00