Skip to content

Commit

Permalink
hash_storage.h: fix size_type
Browse files Browse the repository at this point in the history
  • Loading branch information
felixguendling committed Nov 6, 2019
1 parent a3e2aea commit 6f54c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/cista/containers/hash_storage.h
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ struct hash_storage {
}
}

size_t prepare_insert(size_type const hash) {
size_type prepare_insert(size_type const hash) {
auto target = find_first_non_full(hash);
if (growth_left_ == 0U && !is_deleted(ctrl_[target.offset_])) {
rehash_and_grow_if_necessary();
Expand Down

0 comments on commit 6f54c71

Please sign in to comment.