Skip to content

Commit

Permalink
Fix clippy::manual_flatten warning (rust-lang#2347)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e authored Feb 20, 2021
1 parent f2b2f32 commit 138fe45
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions futures-util/src/future/future/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -303,10 +303,8 @@ where
// Wake all tasks and drop the slab
let mut wakers_guard = inner.notifier.wakers.lock().unwrap();
let mut wakers = wakers_guard.take().unwrap();
for opt_waker in wakers.drain() {
if let Some(waker) = opt_waker {
waker.wake();
}
for waker in wakers.drain().flatten() {
waker.wake();
}

drop(_reset); // Make borrow checker happy
Expand Down

0 comments on commit 138fe45

Please sign in to comment.