Skip to content

Commit 5f866c4

Browse files
committed
Fix merge conflicts on master
1 parent 3b67140 commit 5f866c4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

futures-util/src/stream/fuse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub struct Fuse<St> {
1414

1515
impl<St: Unpin> Unpin for Fuse<St> {}
1616

17-
impl<St: Stream> Fuse<St> {
17+
impl<St> Fuse<St> {
1818
unsafe_pinned!(stream: St);
1919
unsafe_unpinned!(done: bool);
2020

futures-util/src/stream/select.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ pub fn select<St1, St2>(stream1: St1, stream2: St2) -> Select<St1, St2>
3333
stream2: stream2.fuse(),
3434
flag: false,
3535
}
36+
}
3637

38+
impl<St1, St2> Select<St1, St2> {
3739
/// Acquires a reference to the underlying streams that this combinator is
3840
/// pulling from.
3941
pub fn get_ref(&self) -> (&St1, &St2) {

futures/tests/future_obj.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![feature(async_await, futures_api)]
22

3-
use futures::future::{Future, FutureExt, FutureObj};
3+
use futures::future::{Future, FutureObj};
44
use std::pin::Pin;
55
use futures::task::{Context, Poll};
66

0 commit comments

Comments
 (0)