Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
1c681d1
RC1
chuckyvt Jun 30, 2024
4847f5c
Other_type cleanup and removal
chuckyvt Jul 3, 2024
9c5574b
Update src/stdlib_hashmap_chaining.f90
chuckyvt Jul 3, 2024
72f66b9
Update src/stdlib_hashmap_open.f90
chuckyvt Jul 3, 2024
b09a1ad
Update src/stdlib_hashmap_chaining.f90
chuckyvt Jul 3, 2024
b1cfb3b
Remove other type from test_chaining and test_open
chuckyvt Jul 3, 2024
2ae6665
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 3, 2024
1cd2e2e
Update example_hashmaps_set_other_data.f90
chuckyvt Jul 3, 2024
5692eae
Update CMakeLists.txt
chuckyvt Jul 4, 2024
4a2200f
Update CMakeLists.txt
chuckyvt Jul 4, 2024
97ac470
Update CMakeLists.txt
chuckyvt Jul 4, 2024
45f6f2a
Revert "Update CMakeLists.txt"
chuckyvt Jul 4, 2024
df94ee5
Update CMakeLists.txt
chuckyvt Jul 4, 2024
970e389
Update example_hashmaps_set_other_data.f90
chuckyvt Jul 4, 2024
4b6d682
Update stdlib_hashmaps.md
chuckyvt Jul 7, 2024
8a1b4fa
Update to remove other_type references
chuckyvt Jul 10, 2024
61c1082
Update example_hashmaps_map_entry.f90
chuckyvt Jul 10, 2024
f7a6846
Update example_hashmaps_rehash.f90
chuckyvt Jul 10, 2024
aa9952e
Update example_hashmaps_remove.f90
chuckyvt Jul 10, 2024
9c8f7c2
Test allocate again
chuckyvt Jul 10, 2024
d83e555
Update to include allocate statement
chuckyvt Jul 10, 2024
0485d71
Typo fix
chuckyvt Jul 10, 2024
04e59c0
Update doc/specs/stdlib_hashmaps.md
chuckyvt Jul 11, 2024
27b7178
Update doc/specs/stdlib_hashmaps.md
chuckyvt Jul 11, 2024
4d9c68e
Update doc/specs/stdlib_hashmaps.md
chuckyvt Jul 11, 2024
da075e8
Update doc/specs/stdlib_hashmaps.md
chuckyvt Jul 11, 2024
e4f1556
Update example/hashmaps/CMakeLists.txt
chuckyvt Jul 11, 2024
1e33189
Update example/hashmaps/example_hashmaps_get_other_data.f90
chuckyvt Jul 11, 2024
c02421a
Update example/hashmaps/example_hashmaps_map_entry.f90
chuckyvt Jul 11, 2024
6228b58
Update example/hashmaps/example_hashmaps_remove.f90
chuckyvt Jul 11, 2024
5b2e71a
Update example/hashmaps/example_hashmaps_set_other_data.f90
chuckyvt Jul 11, 2024
ac93bca
Reverting back to in-line allocation
chuckyvt Jul 11, 2024
07febc3
Revert "Reverting back to in-line allocation"
chuckyvt Jul 11, 2024
4c453a0
Reapply "Reverting back to in-line allocation"
chuckyvt Jul 12, 2024
33ecef2
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 12, 2024
30f2210
Update doc/specs/stdlib_hashmaps.md
chuckyvt Jul 15, 2024
d06e047
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 16, 2024
8c562e4
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 16, 2024
482776d
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 16, 2024
56d9b9e
Set_other CI fix
chuckyvt Jul 16, 2024
03a9351
Update set_other again
chuckyvt Jul 16, 2024
a2bee26
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 17, 2024
4cb9c4d
Update stdlib_hashmap_chaining.f90
chuckyvt Jul 17, 2024
32ba12d
Revert "Update stdlib_hashmap_chaining.f90"
chuckyvt Jul 17, 2024
cc14840
Revert "Update stdlib_hashmap_chaining.f90"
chuckyvt Jul 17, 2024
4120ec7
Update stdlib_hashmaps.f90
chuckyvt Aug 31, 2024
250252d
Revert "Update stdlib_hashmaps.f90"
chuckyvt Sep 4, 2024
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/stdlib_hashmap_chaining.f90
Co-authored-by: Jeremie Vandenplas <jeremie.vandenplas@gmail.com>
  • Loading branch information
chuckyvt and jvdp1 committed Feb 6, 2025
commit 9c5574b2fed1da6d563a9956e0f9ba2ff37ceeac
2 changes: 1 addition & 1 deletion src/stdlib_hashmap_chaining.f90
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ module subroutine get_other_chaining_data( map, key, other, exists )
end if
else if ( associated( map % inverse(inmap) % target ) ) then
if (present(exists) ) exists = .true.
other = map % inverse(inmap) % target % other
allocate(other, source = map % inverse(inmap) % target % other)
else
if ( present(exists) ) then
exists = .false.
Expand Down