summaryrefslogtreecommitdiffstats
path: root/vendor/futures-util/src/stream/try_stream/try_collect.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/futures-util/src/stream/try_stream/try_collect.rs')
-rw-r--r--vendor/futures-util/src/stream/try_stream/try_collect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/futures-util/src/stream/try_stream/try_collect.rs b/vendor/futures-util/src/stream/try_stream/try_collect.rs
index 5d3b3d766..3e5963f03 100644
--- a/vendor/futures-util/src/stream/try_stream/try_collect.rs
+++ b/vendor/futures-util/src/stream/try_stream/try_collect.rs
@@ -45,7 +45,7 @@ where
Poll::Ready(Ok(loop {
match ready!(this.stream.as_mut().try_poll_next(cx)?) {
Some(x) => this.items.extend(Some(x)),
- None => break mem::replace(this.items, Default::default()),
+ None => break mem::take(this.items),
}
}))
}