diff options
| author | ltdk <usr@ltdk.xyz> | 2024-07-27 02:48:55 -0400 |
|---|---|---|
| committer | ltdk <usr@ltdk.xyz> | 2024-07-27 02:48:55 -0400 |
| commit | 0b9972049727f08610c038bce7177571b7111df5 (patch) | |
| tree | ea25461a5e0030712dd774b32a6ad7ba140de708 | |
| parent | 50835bf1943193f7a78cc39b17f6e90b72bff5a4 (diff) | |
| download | rust-0b9972049727f08610c038bce7177571b7111df5.tar.gz rust-0b9972049727f08610c038bce7177571b7111df5.zip | |
Okay, I guess I have to give these a different feature name
| -rw-r--r-- | library/alloc/src/collections/binary_heap/mod.rs | 2 | ||||
| -rw-r--r-- | library/alloc/src/collections/btree/map.rs | 4 | ||||
| -rw-r--r-- | library/alloc/src/collections/vec_deque/iter.rs | 2 | ||||
| -rw-r--r-- | library/alloc/src/collections/vec_deque/iter_mut.rs | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/library/alloc/src/collections/binary_heap/mod.rs b/library/alloc/src/collections/binary_heap/mod.rs index a4a172b86e5..72e466f4dcd 100644 --- a/library/alloc/src/collections/binary_heap/mod.rs +++ b/library/alloc/src/collections/binary_heap/mod.rs @@ -1433,7 +1433,7 @@ pub struct Iter<'a, T: 'a> { iter: slice::Iter<'a, T>, } -#[stable(feature = "default_iters", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "default_iters_sequel", since = "CURRENT_RUSTC_VERSION")] impl<T> Default for Iter<'_, T> { /// Creates an empty `binary_heap::Iter`. /// diff --git a/library/alloc/src/collections/btree/map.rs b/library/alloc/src/collections/btree/map.rs index a2e97bcee82..2c28e893f36 100644 --- a/library/alloc/src/collections/btree/map.rs +++ b/library/alloc/src/collections/btree/map.rs @@ -2016,7 +2016,7 @@ impl<K, V> Default for Range<'_, K, V> { } } -#[stable(feature = "default_iters", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "default_iters_sequel", since = "CURRENT_RUSTC_VERSION")] impl<K, V> Default for RangeMut<'_, K, V> { /// Creates an empty `btree_map::RangeMut`. /// @@ -2064,7 +2064,7 @@ impl<K, V> ExactSizeIterator for ValuesMut<'_, K, V> { #[stable(feature = "fused", since = "1.26.0")] impl<K, V> FusedIterator for ValuesMut<'_, K, V> {} -#[stable(feature = "default_iters", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "default_iters_sequel", since = "CURRENT_RUSTC_VERSION")] impl<K, V> Default for ValuesMut<'_, K, V> { /// Creates an empty `btree_map::ValuesMut`. /// diff --git a/library/alloc/src/collections/vec_deque/iter.rs b/library/alloc/src/collections/vec_deque/iter.rs index 10adc547da6..67b5b91c4d4 100644 --- a/library/alloc/src/collections/vec_deque/iter.rs +++ b/library/alloc/src/collections/vec_deque/iter.rs @@ -28,7 +28,7 @@ impl<T: fmt::Debug> fmt::Debug for Iter<'_, T> { } } -#[stable(feature = "default_iters", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "default_iters_sequel", since = "CURRENT_RUSTC_VERSION")] impl<T> Default for Iter<'_, T> { /// Creates an empty `vec_deque::Iter`. /// diff --git a/library/alloc/src/collections/vec_deque/iter_mut.rs b/library/alloc/src/collections/vec_deque/iter_mut.rs index 18f11096eeb..2726e3e4252 100644 --- a/library/alloc/src/collections/vec_deque/iter_mut.rs +++ b/library/alloc/src/collections/vec_deque/iter_mut.rs @@ -28,7 +28,7 @@ impl<T: fmt::Debug> fmt::Debug for IterMut<'_, T> { } } -#[stable(feature = "default_iters", since = "CURRENT_RUSTC_VERSION")] +#[stable(feature = "default_iters_sequel", since = "CURRENT_RUSTC_VERSION")] impl<T> Default for IterMut<'_, T> { /// Creates an empty `vec_deque::IterMut`. /// |
