Skip to content

Commit 080d719

Browse files
committed
Fixed carriage return
Accidentally deleted carriage return which caused compillation problems. Fixed. [ticket: X]
1 parent 817633f commit 080d719

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/stdlib_hashmap_open.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,8 @@ module subroutine map_open_entry(map, key, other, conflict)
559559

560560
subroutine allocate_open_map_entry(map, bucket)
561561
! allocates a hash bucket
562-
type(open_hashmap_type), intent(inout) :: map type(open_map_entry_type), pointer, intent(out) :: bucket
562+
type(open_hashmap_type), intent(inout) :: map
563+
type(open_map_entry_type), pointer, intent(out) :: bucket
563564
type(open_map_entry_list), pointer :: free_list
564565
type(open_map_entry_pool), pointer :: pool
565566
character(*), parameter :: procedure_name = "ALLOCATE_MAP_ENTRY"

0 commit comments

Comments
 (0)