We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b131081 commit daebd86Copy full SHA for daebd86
crates/bevy_ecs/src/system/combinator.rs
@@ -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
-
6
use alloc::{format, vec::Vec};
7
use bevy_utils::prelude::DebugName;
8
use core::marker::PhantomData;
@@ -172,8 +167,6 @@ where
172
167
input: SystemIn<S>,
173
168
world: &mut PrivateUnsafeWorldCell,
174
169
) -> Result<S::Out, RunSystemError> {
175
- #![deny(unsafe_op_in_unsafe_fn)]
176
177
170
// SAFETY: see comment on `Func::combine` call
178
171
match (|| unsafe {
179
system.validate_param_unsafe(world.0)?;
0 commit comments