This commit is contained in:
Kai Mast 2020-03-28 15:36:07 -07:00
parent 442a52be07
commit f9b73607f5

View File

@ -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 {