bevy/crates/bevy_render/src/render_graph
Joseph d5d355ae1f
Fix the clippy::explicit_iter_loop lint (#9834)
# Objective

Replace instances of

```rust
for x in collection.iter{_mut}() {
```

with

```rust
for x in &{mut} collection {
```

This also changes CI to no longer suppress this lint. Note that since
this lint only shows up when using clippy in pedantic mode, it was
probably unnecessary to suppress this lint in the first place.
2023-09-19 03:35:22 +00:00
..
app.rs Use RenderGraphApp in more places (#8298) 2023-04-05 20:57:56 +00:00
context.rs Make render graph slots optional for most cases (#8109) 2023-03-21 20:11:13 +00:00
edge.rs Fixed several missing links in docs. (#8117) 2023-04-23 17:28:36 +00:00
graph.rs Fix the clippy::explicit_iter_loop lint (#9834) 2023-09-19 03:35:22 +00:00
mod.rs Add RenderGraphApp to simplify adding render nodes (#8007) 2023-04-04 00:50:22 +00:00
node_slot.rs Use position in code when possible (#7621) 2023-02-11 08:28:14 +00:00
node.rs Fix CI for Rust 1.72 (#9562) 2023-08-25 12:34:24 +00:00