about summary refs log tree commit diff
path: root/library/std/src/collections/hash/map
diff options
context:
space:
mode:
authorltdk <usr@ltdk.xyz>2023-09-08 23:57:15 -0400
committerltdk <usr@ltdk.xyz>2023-11-02 20:35:20 -0400
commit075409ddd9bf30602c7654e37127e1dbbb460871 (patch)
treebf25a94555a08287d62859077f8ef42e6b6c647f /library/std/src/collections/hash/map
parenta2f5f9691b6ce64c1703feaf9363710dfd7a56cf (diff)
Move RandomState and DefaultHasher into std::hash, but don't export for now
Diffstat (limited to 'library/std/src/collections/hash/map')
-rw-r--r--library/std/src/collections/hash/map/tests.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/collections/hash/map/tests.rs b/library/std/src/collections/hash/map/tests.rs
index 91a3776e7be..8585376abc1 100644
--- a/library/std/src/collections/hash/map/tests.rs
+++ b/library/std/src/collections/hash/map/tests.rs
@@ -1,8 +1,8 @@
 use super::Entry::{Occupied, Vacant};
 use super::HashMap;
-use super::RandomState;
 use crate::assert_matches::assert_matches;
 use crate::cell::RefCell;
+use crate::hash::RandomState;
 use crate::test_helpers::test_rng;
 use rand::Rng;
 use realstd::collections::TryReserveErrorKind::*;