diff options
author | 2020-03-28 15:36:07 -0700 | |
---|---|---|
committer | 2020-03-28 15:36:07 -0700 | |
commit | f9b73607f59afd435eca0f06a1163ad826806386 (patch) | |
tree | 05137f6194814a6f23369ef2503f4b3e9411798f /src/executor.rs | |
parent | 442a52be0796eef848cef4ae849f83a5e3161a79 (diff) | |
download | iced-f9b73607f59afd435eca0f06a1163ad826806386.tar.gz iced-f9b73607f59afd435eca0f06a1163ad826806386.tar.bz2 iced-f9b73607f59afd435eca0f06a1163ad826806386.zip |
Fix lint
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 2067ffac..b4be5264 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -36,7 +36,7 @@ mod platform { &self, future: impl futures::Future<Output = ()> + Send + 'static, ) { - self.0.spawn(future); + let _ = self.0.spawn(future); } fn enter<R>(&self, f: impl FnOnce() -> R) -> R { |