aboutsummaryrefslogtreecommitdiffstats
path: root/components/hashglobe/src/hash_map.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/hashglobe/src/hash_map.rs')
-rw-r--r--components/hashglobe/src/hash_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/hashglobe/src/hash_map.rs b/components/hashglobe/src/hash_map.rs
index 03ade951e1e..cc9f724aee0 100644
--- a/components/hashglobe/src/hash_map.rs
+++ b/components/hashglobe/src/hash_map.rs
@@ -23,7 +23,7 @@ use std::ops::{Deref, Index};
use super::table::BucketState::{Empty, Full};
use super::table::{self, Bucket, EmptyBucket, FullBucket, FullBucketMut, RawTable, SafeHash};
-use FailedAllocationError;
+use crate::FailedAllocationError;
const MIN_NONZERO_RAW_CAPACITY: usize = 32; // must be a power of two