Skip to content

Commit 6fbdaf4

Browse files
committed
unstabilize FusedIterator for Flatten since Flatten is unstable
1 parent ff2d506 commit 6fbdaf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/iter/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2605,7 +2605,7 @@ impl<I, U> DoubleEndedIterator for Flatten<I>
26052605
}
26062606
}
26072607

2608-
#[stable(feature = "fused", since = "1.26.0")]
2608+
#[unstable(feature = "iterator_flatten", issue = "48213")]
26092609
impl<I, U> FusedIterator for Flatten<I>
26102610
where I: FusedIterator, U: Iterator,
26112611
I::Item: IntoIterator<IntoIter = U, Item = U::Item> {}

0 commit comments

Comments
 (0)