diff options
author | dec05eba <dec05eba@protonmail.com> | 2020-01-21 01:01:32 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2020-01-21 01:01:32 +0100 |
commit | a79a3ec573955d073c872cbe112b60d017152a37 (patch) | |
tree | 19caf9a5590d5870225eea0b7cda4bd6da7f7354 /include | |
parent | 108018e3e7326dabbbef568ab08bc5cebf5d427b (diff) |
Fix hash map issues
Diffstat (limited to 'include')
-rw-r--r-- | include/std/hash_map.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/std/hash_map.h b/include/std/hash_map.h index f3a3a6d..986576d 100644 --- a/include/std/hash_map.h +++ b/include/std/hash_map.h @@ -11,7 +11,6 @@ typedef struct { void *buckets_data; /* value=TslHashMapNode<void*>, data=|hash(uint64_t) + key_size(size_t) + key_data(...) data_size(size_t) + data_data(...)| */ size_t buckets_size; size_t buckets_capacity; - size_t num_items; } TslHashMap; void tsl_hash_map_init(TslHashMap *self); |