From 349dd8bd45b41b02396eab15c5fa1d6648eeac54 Mon Sep 17 00:00:00 2001 From: Christian Hughes <9044780+ItsDoot@users.noreply.github.com> Date: Sat, 26 Aug 2023 08:57:19 -0500 Subject: [PATCH] Relax In/Out bounds on impl Debug for dyn System (#9581) # Objective Resolves #9580 ## Solution Relaxed the bounds on the `Debug` impl for `dyn System` --- crates/bevy_ecs/src/system/system.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/system/system.rs b/crates/bevy_ecs/src/system/system.rs index b975ce82c48de..462774460bfc7 100644 --- a/crates/bevy_ecs/src/system/system.rs +++ b/crates/bevy_ecs/src/system/system.rs @@ -149,7 +149,7 @@ pub(crate) fn check_system_change_tick(last_run: &mut Tick, this_run: Tick, syst } } -impl Debug for dyn System { +impl Debug for dyn System { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { write!(f, "System {}: {{{}}}", self.name(), { if self.is_send() {