From 534a357d85b08e9d31f3b1d843581e308e1e9605 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Sat, 7 Oct 2023 20:39:13 +0100 Subject: [PATCH] Add another missing import --- agb-hashmap/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agb-hashmap/src/lib.rs b/agb-hashmap/src/lib.rs index 8de5370c..c39d8458 100644 --- a/agb-hashmap/src/lib.rs +++ b/agb-hashmap/src/lib.rs @@ -947,7 +947,7 @@ impl core::ops::Add for HashType { #[cfg(test)] mod test { - use core::cell::RefCell; + use core::{cell::RefCell, hash::Hasher}; use alloc::vec::Vec;