Skip to content

Commit

Permalink
Fix clippy::manual_flatten warning (#2347)
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Feb 20, 2021
1 parent f273d3b commit e981716
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 @@ -313,10 +313,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 e981716

Please sign in to comment.