Skip to content

Commit

Permalink
Fix unsoundness in Query::for_each_mut (#2045)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheRawMeatball committed Apr 29, 2021
1 parent 85ab55a commit dbf519c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/system/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ where
/// Runs `f` on each query result. This is faster than the equivalent iter() method, but cannot
/// be chained like a normal [`Iterator`].
#[inline]
pub fn for_each_mut(&self, f: impl FnMut(<Q::Fetch as Fetch<'w>>::Item)) {
pub fn for_each_mut(&mut self, f: impl FnMut(<Q::Fetch as Fetch<'w>>::Item)) {
// SAFE: system runs without conflicts with other systems. same-system queries have runtime
// borrow checks when they conflict
unsafe {
Expand Down

0 comments on commit dbf519c

Please sign in to comment.