Skip to content

Commit

Permalink
Merge pull request #222 from shimaowo/dispatcher_builder_fix
Browse files Browse the repository at this point in the history
fix #221 - have DispatcherBuilder::add_batch() use the correct access
  • Loading branch information
zesterer authored Feb 6, 2023
2 parents 05a56c4 + d0a4e6e commit 0daab64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dispatch/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ impl<'a, 'b> DispatcherBuilder<'a, 'b> {
reads.dedup();

let mut writes = dispatcher_builder.stages_builder.fetch_all_writes();
writes.extend(<T::BatchSystemData as SystemData>::reads());
writes.extend(<T::BatchSystemData as SystemData>::writes());
writes.sort();
writes.dedup();

Expand Down

0 comments on commit 0daab64

Please sign in to comment.