bevy/crates/bevy_ecs/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
..
entity Allow disjoint mutable world access via EntityMut (#9419) 2023-08-28 23:30:59 +00:00
query Allow disjoint mutable world access via EntityMut (#9419) 2023-08-28 23:30:59 +00:00
reflect Allow disjoint mutable world access via EntityMut (#9419) 2023-08-28 23:30:59 +00:00
schedule Fix anonymous set name stack overflow (#9650) 2023-08-31 22:52:59 +00:00
storage Fix typos throughout the project (#9090) 2023-07-10 00:11:51 +00:00
system Allow disjoint mutable world access via EntityMut (#9419) 2023-08-28 23:30:59 +00:00
world Fix some nightly warnings (#9672) 2023-09-02 18:35:06 +00:00
archetype.rs Allow disjoint mutable world access via EntityMut (#9419) 2023-08-28 23:30:59 +00:00
bundle.rs Fix some nightly warnings (#9672) 2023-09-02 18:35:06 +00:00
change_detection.rs Move schedule name into Schedule (#9600) 2023-08-28 20:44:48 +00:00
component.rs Derive Eq, PartialEq for Tick (#9020) 2023-07-04 19:08:51 +00:00
event.rs Refactor EventReader::iter to read (#9631) 2023-08-30 14:20:03 +00:00
lib.rs Allow disjoint mutable world access via EntityMut (#9419) 2023-08-28 23:30:59 +00:00
removal_detection.rs Refactor EventReader::iter to read (#9631) 2023-08-30 14:20:03 +00:00