From 8b66a4af58e487e7365d60cf698a2c41c3a6f2e8 Mon Sep 17 00:00:00 2001 From: noah Date: Wed, 13 May 2026 23:39:43 -0500 Subject: [PATCH] fmt --- tokio/src/runtime/task/harness.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/tokio/src/runtime/task/harness.rs b/tokio/src/runtime/task/harness.rs index 51ccb0cb8..0dee88f6b 100644 --- a/tokio/src/runtime/task/harness.rs +++ b/tokio/src/runtime/task/harness.rs @@ -638,10 +638,7 @@ unsafe fn poll_future( self.core.drop_future_or_output(self.header); } } - let guard = Guard { - core, - header, - }; + let guard = Guard { core, header }; // Safety: the caller guarantees the mutual-exclusion requirements of // `Core::poll` and that `header` identifies this live task allocation. let res = unsafe { guard.core.poll(header, cx) };