Skip to content

Commit b11af0e

Browse files
committed
Add missing 'instance Typeable HashMap'
1 parent c828e1d commit b11af0e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Data/HashMap/Base.hs

+1
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ type role HashMapInner nominal representational
167167
-- | A wrapper over 'HashMapInner'. The 'Int' field represent the hashmap's
168168
-- size.
169169
data HashMap k v = HashMap {-# UNPACK #-} !Int !(HashMapInner k v)
170+
deriving Typeable
170171

171172
instance (NFData k, NFData v) => NFData (HashMapInner k v) where
172173
rnf Empty = ()

0 commit comments

Comments
 (0)