2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

Update src/stream/stream/flatten.rs

Co-Authored-By: Taiki Endo <te316e89@gmail.com>
This commit is contained in:
nasa 2019-10-26 01:43:07 +09:00 committed by GitHub
parent 6168952d6f
commit bf3508ffb2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,7 +114,7 @@ where
}
}
match futures_core::ready!(Pin::new(&mut this.stream).poll_next(cx)) {
match futures_core::ready!(this.stream.as_mut().poll_next(cx)) {
None => return Poll::Ready(None),
Some(inner) => *this.frontiter = Some(inner.into_stream()),
}