diff options
author | 2020-03-28 15:25:55 -0700 | |
---|---|---|
committer | 2020-03-28 15:25:55 -0700 | |
commit | cbe9298a0b31c3af05e4515a74dd5d9f997e6af2 (patch) | |
tree | af5c523e007f0b45e3826fb3239853609212d0d3 /src/executor.rs | |
parent | 57b2daa57e7312b3015817d8f400b3523f2e42a7 (diff) | |
download | iced-cbe9298a0b31c3af05e4515a74dd5d9f997e6af2.tar.gz iced-cbe9298a0b31c3af05e4515a74dd5d9f997e6af2.tar.bz2 iced-cbe9298a0b31c3af05e4515a74dd5d9f997e6af2.zip |
Clippy
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 { |