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