You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
663 B
26 lines
663 B
From c4945f2cde25f388654cbd4614fd1b236a128986 Mon Sep 17 00:00:00 2001
|
|
From: Josh Stone <cuviper@gmail.com>
|
|
Date: Mon, 27 Jan 2020 16:24:00 -0800
|
|
Subject: [PATCH] Upgrade to ahash 0.3.2
|
|
|
|
---
|
|
src/map.rs | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/map.rs b/src/map.rs
|
|
index 5bb4a9d358b9..54890bc40dbd 100644
|
|
--- a/src/map.rs
|
|
+++ b/src/map.rs
|
|
@@ -10,7 +10,7 @@ use core::ops::Index;
|
|
|
|
/// Default hasher for `HashMap`.
|
|
#[cfg(feature = "ahash")]
|
|
-pub type DefaultHashBuilder = ahash::ABuildHasher;
|
|
+pub type DefaultHashBuilder = ahash::RandomState;
|
|
|
|
/// Dummy default hasher for `HashMap`.
|
|
#[cfg(not(feature = "ahash"))]
|
|
--
|
|
2.24.1
|
|
|