]> git.lizzy.rs Git - rust.git/blobdiff - src/liballoc/vec.rs
core: Update stability attributes for FusedIterator
[rust.git] / src / liballoc / vec.rs
index 03c9750fb3928bbe22b1937eae8541d49c82b899..9e5672ef148c4570e2a4af83d7f7636b8aab1616 100644 (file)
@@ -2389,7 +2389,7 @@ fn is_empty(&self) -> bool {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<T> FusedIterator for IntoIter<T> {}
 
 #[unstable(feature = "trusted_len", issue = "37572")]
@@ -2495,7 +2495,7 @@ fn is_empty(&self) -> bool {
     }
 }
 
-#[stable(feature = "fused", since = "1.25.0")]
+#[stable(feature = "fused", since = "1.26.0")]
 impl<'a, T> FusedIterator for Drain<'a, T> {}
 
 /// A place for insertion at the back of a `Vec`.