Skip to content

Tags: Clownsw/parallel-hashmap

Tags

v1.3.11

Toggle v1.3.11's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
Bump version to 1.3.11

v1.3.10

Toggle v1.3.10's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
Bump conan version

1.3.9

Toggle 1.3.9's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
Fix issue greg7mdp#117 - segfault when out of memory.

when constructing an object to be inserted throws std::bad_alloc, the slot was mark as used
(even though the object was not properly constructed), so eventually the destructor of a
non-initialized object was called causing a segfault.

Solution: mark the slot used only after the object is successfully constructed.

v1.3.9

Toggle v1.3.9's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
Fix issue greg7mdp#117 - segfault when out of memory.

when constructing an object to be inserted throws std::bad_alloc, the slot was mark as used
(even though the object was not properly constructed), so eventually the destructor of a
non-initialized object was called causing a segfault.

Solution: mark the slot used only after the object is successfully constructed.

v1.3.8

Toggle v1.3.8's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
update version number to start with the letter v

1.37

Toggle 1.37's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
Update gtest macro in btree_test.cc

1.36

Toggle 1.36's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request greg7mdp#165 from greg7mdp/disable_locking

Allow swap() to work with parallel hash maps/sets with different mutex types, so you can use the same container with or without locking.

1.35

Toggle 1.35's commit message

Verified

This commit was signed with the committer’s verified signature.
greg7mdp Gregory Popovitch
use ADL lookup for erase_if instead of adding to std (gtl reported is…

…sue)

1.34

Toggle 1.34's commit message
fix previous fix

1.33

Toggle 1.33's commit message
issue greg7mdp#89