Skip to content

Commit

Permalink
remove allowed unused_variables lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsDoot committed Dec 4, 2024
1 parent 7205c60 commit 5163b1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/schedule/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ impl SystemSchedule {
/// [`PipeSystem`]: crate::system::PipeSystem
/// [`Schedule`]: super::Schedule
#[doc(alias = "apply_system_buffers")]
#[allow(unused_variables, non_camel_case_types)]
#[allow(non_camel_case_types)]
pub struct apply_deferred;

/// Returns `true` if the [`System`](crate::system::System) is an instance of [`apply_deferred`].
Expand Down

0 comments on commit 5163b1b

Please sign in to comment.