Skip to content

Commit 1509944

Browse files
Rollup merge of rust-lang#130522 - GnomedDev:clippy-manual-retain-paths, r=compiler-errors
[Clippy] Swap `manual_retain` to use diagnostic items instead of paths Part of rust-lang/rust-clippy#5393, just a chore.
2 parents 8a9576c + ff51d9f commit 1509944

File tree

7 files changed

+9
-0
lines changed

7 files changed

+9
-0
lines changed

alloc/src/collections/binary_heap/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -959,6 +959,7 @@ impl<T, A: Allocator> BinaryHeap<T, A> {
959959
/// }
960960
/// ```
961961
#[stable(feature = "rust1", since = "1.0.0")]
962+
#[cfg_attr(not(test), rustc_diagnostic_item = "binaryheap_iter")]
962963
pub fn iter(&self) -> Iter<'_, T> {
963964
Iter { iter: self.data.iter() }
964965
}

alloc/src/collections/btree/set.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1132,6 +1132,7 @@ impl<T, A: Allocator + Clone> BTreeSet<T, A> {
11321132
/// assert_eq!(set_iter.next(), None);
11331133
/// ```
11341134
#[stable(feature = "rust1", since = "1.0.0")]
1135+
#[cfg_attr(not(test), rustc_diagnostic_item = "btreeset_iter")]
11351136
pub fn iter(&self) -> Iter<'_, T> {
11361137
Iter { iter: self.map.keys() }
11371138
}

alloc/src/collections/vec_deque/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1201,6 +1201,7 @@ impl<T, A: Allocator> VecDeque<T, A> {
12011201
/// assert_eq!(&c[..], b);
12021202
/// ```
12031203
#[stable(feature = "rust1", since = "1.0.0")]
1204+
#[cfg_attr(not(test), rustc_diagnostic_item = "vecdeque_iter")]
12041205
pub fn iter(&self) -> Iter<'_, T> {
12051206
let (a, b) = self.as_slices();
12061207
Iter::new(a.iter(), b.iter())

core/src/iter/traits/iterator.rs

+3
Original file line numberDiff line numberDiff line change
@@ -876,6 +876,7 @@ pub trait Iterator {
876876
#[inline]
877877
#[stable(feature = "rust1", since = "1.0.0")]
878878
#[rustc_do_not_const_check]
879+
#[cfg_attr(not(test), rustc_diagnostic_item = "iter_filter")]
879880
fn filter<P>(self, predicate: P) -> Filter<Self, P>
880881
where
881882
Self: Sized,
@@ -3412,6 +3413,7 @@ pub trait Iterator {
34123413
/// ```
34133414
#[stable(feature = "iter_copied", since = "1.36.0")]
34143415
#[rustc_do_not_const_check]
3416+
#[cfg_attr(not(test), rustc_diagnostic_item = "iter_copied")]
34153417
fn copied<'a, T: 'a>(self) -> Copied<Self>
34163418
where
34173419
Self: Sized + Iterator<Item = &'a T>,
@@ -3460,6 +3462,7 @@ pub trait Iterator {
34603462
/// ```
34613463
#[stable(feature = "rust1", since = "1.0.0")]
34623464
#[rustc_do_not_const_check]
3465+
#[cfg_attr(not(test), rustc_diagnostic_item = "iter_cloned")]
34633466
fn cloned<'a, T: 'a>(self) -> Cloned<Self>
34643467
where
34653468
Self: Sized + Iterator<Item = &'a T>,

core/src/slice/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1010,6 +1010,7 @@ impl<T> [T] {
10101010
/// ```
10111011
#[stable(feature = "rust1", since = "1.0.0")]
10121012
#[inline]
1013+
#[cfg_attr(not(test), rustc_diagnostic_item = "slice_iter")]
10131014
pub fn iter(&self) -> Iter<'_, T> {
10141015
Iter::new(self)
10151016
}

core/src/str/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -832,6 +832,7 @@ impl str {
832832
/// ```
833833
#[stable(feature = "rust1", since = "1.0.0")]
834834
#[inline]
835+
#[cfg_attr(not(test), rustc_diagnostic_item = "str_chars")]
835836
pub fn chars(&self) -> Chars<'_> {
836837
Chars { iter: self.as_bytes().iter() }
837838
}

std/src/collections/hash/set.rs

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ impl<T, S> HashSet<T, S> {
187187
#[inline]
188188
#[rustc_lint_query_instability]
189189
#[stable(feature = "rust1", since = "1.0.0")]
190+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashset_iter")]
190191
pub fn iter(&self) -> Iter<'_, T> {
191192
Iter { base: self.base.iter() }
192193
}

0 commit comments

Comments
 (0)