Skip to content

Commit 1e4b95a

Browse files
committed
Clean up after merge.
1 parent 5d07751 commit 1e4b95a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rustc_entry.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use self::RustcEntry::*;
2-
use crate::map::{make_hash, Drain, HashMap, IntoIter, Iter, IterMut};
2+
use crate::map::{Drain, HashMap, IntoIter, Iter, IterMut, make_insert_hash};
33
use crate::raw::{AllocRef, Bucket, Global, RawTable};
44
use core::fmt::{self, Debug};
55
use core::hash::{BuildHasher, Hash};
@@ -32,7 +32,7 @@ where
3232
/// ```
3333
#[cfg_attr(feature = "inline-more", inline)]
3434
pub fn rustc_entry(&mut self, key: K) -> RustcEntry<'_, K, V, A> {
35-
let hash = make_hash(&self.hash_builder, &key);
35+
let hash = make_insert_hash(&self.hash_builder, &key);
3636
if let Some(elem) = self.table.find(hash, |q| q.0.eq(&key)) {
3737
RustcEntry::Occupied(RustcOccupiedEntry {
3838
key: Some(key),

0 commit comments

Comments
 (0)