Skip to content

Commit

Permalink
unstabilize FusedIterator for Flatten since Flatten is unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
Centril committed Mar 15, 2018
1 parent ff2d506 commit 6fbdaf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/iter/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2605,7 +2605,7 @@ impl<I, U> DoubleEndedIterator for Flatten<I>
}
}

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

0 comments on commit 6fbdaf4

Please sign in to comment.