Skip to content

Commit

Permalink
Auto merge of #25496 - alexcrichton:stabilize-cloned, r=aturon
Browse files Browse the repository at this point in the history
The method was stabilized but the structure was forgotten to be stabilized.

Closes #25480
  • Loading branch information
bors committed May 19, 2015
2 parents 8dbc369 + f894417 commit eeaf2ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcore/iter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ impl<T: Clone> MinMaxResult<T> {
}

/// An iterator that clones the elements of an underlying iterator
#[unstable(feature = "core", reason = "recent addition")]
#[stable(feature = "iter_cloned", since = "1.1.0")]
#[must_use = "iterator adaptors are lazy and do nothing unless consumed"]
#[derive(Clone)]
pub struct Cloned<I> {
Expand Down

0 comments on commit eeaf2ba

Please sign in to comment.