Skip to content

Commit 2aae214

Browse files
committed
Minor formatting change
1 parent 9496beb commit 2aae214

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/stdlib_hashmap_chaining.f90

+1-3
Original file line numberDiff line numberDiff line change
@@ -449,9 +449,7 @@ module subroutine init_chaining_map( map, &
449449
map % total_probes = 0
450450

451451
! Check if user has specified a hasher other than the default hasher.
452-
if (present(hasher)) then
453-
map % hasher => hasher
454-
endif
452+
if (present(hasher)) map % hasher => hasher
455453

456454
call free_chaining_map( map )
457455

src/stdlib_hashmap_open.f90

+1-3
Original file line numberDiff line numberDiff line change
@@ -426,9 +426,7 @@ module subroutine init_open_map( map, &
426426
map % total_probes = 0
427427

428428
! Check if user has specified a hasher other than the default hasher.
429-
if (present(hasher)) then
430-
map % hasher => hasher
431-
endif
429+
if (present(hasher)) map % hasher => hasher
432430

433431
if ( present(slots_bits) ) then
434432
if ( slots_bits < default_bits .OR. &

0 commit comments

Comments
 (0)