From d7e4cb4ab10da4f5a6ac936e26db67f5956349de Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 1 Sep 2023 16:52:41 -0700 Subject: [PATCH] executor: timers must be used --- crates/gpui/src/executor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/gpui/src/executor.rs b/crates/gpui/src/executor.rs index 712c8544884af838a6d5cccdc5f6555a77b8014f..474ea8364fef1a18f6c137bfe0920d2ffe452e97 100644 --- a/crates/gpui/src/executor.rs +++ b/crates/gpui/src/executor.rs @@ -106,6 +106,7 @@ pub struct Deterministic { parker: parking_lot::Mutex, } +#[must_use] pub enum Timer { Production(smol::Timer), #[cfg(any(test, feature = "test-support"))]