This commit is contained in:
Kai Mast 2020-03-28 15:25:55 -07:00
parent 57b2daa57e
commit cbe9298a0b
3 changed files with 8 additions and 9 deletions

View file

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