Skip to content

Commit 116e527

Browse files
committed
[Clippy] Swap map_entry to use diagnostic items instead of paths
1 parent 6210ecb commit 116e527

File tree

2 files changed

+4
-0
lines changed
  • alloc/src/collections/btree
  • std/src/collections/hash

2 files changed

+4
-0
lines changed

alloc/src/collections/btree/map.rs

+2
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,7 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
916916
/// assert_eq!(map.contains_key(&2), false);
917917
/// ```
918918
#[stable(feature = "rust1", since = "1.0.0")]
919+
#[cfg_attr(not(test), rustc_diagnostic_item = "btreemap_contains_key")]
919920
pub fn contains_key<Q: ?Sized>(&self, key: &Q) -> bool
920921
where
921922
K: Borrow<Q> + Ord,
@@ -981,6 +982,7 @@ impl<K, V, A: Allocator + Clone> BTreeMap<K, V, A> {
981982
/// ```
982983
#[stable(feature = "rust1", since = "1.0.0")]
983984
#[rustc_confusables("push", "put", "set")]
985+
#[cfg_attr(not(test), rustc_diagnostic_item = "btreemap_insert")]
984986
pub fn insert(&mut self, key: K, value: V) -> Option<V>
985987
where
986988
K: Ord,

std/src/collections/hash/map.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1037,6 +1037,7 @@ where
10371037
/// ```
10381038
#[inline]
10391039
#[stable(feature = "rust1", since = "1.0.0")]
1040+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_contains_key")]
10401041
pub fn contains_key<Q: ?Sized>(&self, k: &Q) -> bool
10411042
where
10421043
K: Borrow<Q>,
@@ -1100,6 +1101,7 @@ where
11001101
#[inline]
11011102
#[stable(feature = "rust1", since = "1.0.0")]
11021103
#[rustc_confusables("push", "append", "put")]
1104+
#[cfg_attr(not(test), rustc_diagnostic_item = "hashmap_insert")]
11031105
pub fn insert(&mut self, k: K, v: V) -> Option<V> {
11041106
self.base.insert(k, v)
11051107
}

0 commit comments

Comments
 (0)