2
0
Fork 0
mirror of https://git.asonix.dog/asonix/pict-rs synced 2024-12-22 03:11:24 +00:00

Remove unlooping loop

This commit is contained in:
asonix 2024-12-09 19:38:06 -06:00
parent 5e95c76a0f
commit ef60ed9581

View file

@ -54,14 +54,12 @@ where
pub async fn make_progress_with<F: std::future::Future>(&mut self, f: F) -> F::Output { pub async fn make_progress_with<F: std::future::Future>(&mut self, f: F) -> F::Output {
let mut f = std::pin::pin!(f); let mut f = std::pin::pin!(f);
loop { tokio::select! {
tokio::select! { _ = self.make_progress() => {
_ = self.make_progress() => { return f.await;
return f.await; }
} output = &mut f => {
output = &mut f => { return output;
return output;
}
} }
} }
} }