Skip to content

Commit daebd86

Browse files
committed
remove now unneeded expect and deny
1 parent b131081 commit daebd86

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

crates/bevy_ecs/src/system/combinator.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
#![expect(
2-
unsafe_op_in_unsafe_fn,
3-
reason = "See #11590. To be removed once all applicable unsafe code has an unsafe block with a safety comment."
4-
)]
5-
61
use alloc::{format, vec::Vec};
72
use bevy_utils::prelude::DebugName;
83
use core::marker::PhantomData;
@@ -172,8 +167,6 @@ where
172167
input: SystemIn<S>,
173168
world: &mut PrivateUnsafeWorldCell,
174169
) -> Result<S::Out, RunSystemError> {
175-
#![deny(unsafe_op_in_unsafe_fn)]
176-
177170
// SAFETY: see comment on `Func::combine` call
178171
match (|| unsafe {
179172
system.validate_param_unsafe(world.0)?;

0 commit comments

Comments
 (0)