From f894417e6b75f9eaa276414de525ea56418f2f68 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sat, 16 May 2015 11:27:08 -0700 Subject: [PATCH] std: Fix missing stability on iter::Cloned The method was stabilized but the structure was forgotten to be stabilized. Closes #25480 --- src/libcore/iter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/iter.rs b/src/libcore/iter.rs index cab79d938c374..091342226e0ec 100644 --- a/src/libcore/iter.rs +++ b/src/libcore/iter.rs @@ -1370,7 +1370,7 @@ impl MinMaxResult { } /// 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 {