From f9b73607f59afd435eca0f06a1163ad826806386 Mon Sep 17 00:00:00 2001 From: Kai Mast Date: Sat, 28 Mar 2020 15:36:07 -0700 Subject: [PATCH] Fix lint --- src/executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/executor.rs b/src/executor.rs index 2067ffac..b4be5264 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -36,7 +36,7 @@ mod platform { &self, future: impl futures::Future + Send + 'static, ) { - self.0.spawn(future); + let _ = self.0.spawn(future); } fn enter(&self, f: impl FnOnce() -> R) -> R {