Skip to content

Commit

Permalink
Update stdlib_hashmap_chaining.f90
Browse files Browse the repository at this point in the history
Test to see if removing associate construct fixes the one CI failure.
  • Loading branch information
chuckyvt committed Jul 16, 2024
1 parent 9415a37 commit 351e628
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/stdlib_hashmap_chaining.f90
Original file line number Diff line number Diff line change
Expand Up @@ -809,11 +809,12 @@ module subroutine set_other_chaining_data( map, key, other, exists )
invalid_inmap
end if
else if ( associated( map % inverse(inmap) % target ) ) then
associate( target => map % inverse(inmap) % target )
target % other = other
! associate( target => map % inverse(inmap) % target )
! target % other = other
map % inverse(inmap) % target % other = other
if ( present(exists) ) exists = .true.
return
end associate
! end associate
else
error stop submodule_name // ' % ' // procedure // ': ' // &
invalid_inmap
Expand Down

0 comments on commit 351e628

Please sign in to comment.