diff options
Diffstat (limited to '')
-rw-r--r-- | src/executor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<Output = ()> + Send + 'static, ) { - let _ = self.0.spawn(future); + self.0.spawn(future); } fn enter<R>(&self, f: impl FnOnce() -> R) -> R { |