@@ -32,7 +32,6 @@ module stdlib_hashmaps
32
32
seeded_water_hasher, &
33
33
set, &
34
34
key_type, &
35
- other_type, &
36
35
int_hash
37
36
38
37
implicit none
@@ -181,7 +180,7 @@ subroutine key_get_other_data( map, key, other, exists )
181
180
! ! other - the other data associated with the key
182
181
! ! exists - a logical flag indicating whether an entry with that key exists
183
182
!
184
- import hashmap_type, key_type, other_type
183
+ import hashmap_type, key_type
185
184
class(hashmap_type), intent (inout ) :: map
186
185
type (key_type), intent (in ) :: key
187
186
class(* ), allocatable , intent (out ) :: other
@@ -254,7 +253,7 @@ subroutine key_map_entry(map, key, other, conflict)
254
253
! ! Inserts an entry into the hash table
255
254
! ! ([Specifications](../page/specs/stdlib_hashmaps.html#map_entry-inserts-an-entry-into-the-hash-map))
256
255
! !
257
- import hashmap_type, key_type, other_type
256
+ import hashmap_type, key_type
258
257
class(hashmap_type), intent (inout ) :: map
259
258
type (key_type), intent (in ) :: key
260
259
class(* ), intent (in ), optional :: other
@@ -302,7 +301,7 @@ subroutine key_set_other_data( map, key, other, exists )
302
301
! ! in the map
303
302
! !
304
303
!
305
- import hashmap_type, key_type, other_type
304
+ import hashmap_type, key_type
306
305
class(hashmap_type), intent (inout ) :: map
307
306
type (key_type), intent (in ) :: key
308
307
class(* ), intent (in ) :: other
0 commit comments