zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 0b94c83debd00846fb878f87323bdf16aa07bffc (tree)
parent 06f6acb4b19cab55dd8637a41c11501bf8e7158e
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Mon,  1 Feb 2016 17:50:46 -0700

remove the constructor of hash map

Diffstat:
Msrc/hash_map.hpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/hash_map.hpp b/src/hash_map.hpp @@ -151,7 +151,7 @@ private: int _size; int _max_distance_from_start_index; // this is used to detect bugs where a hashtable is edited while an iterator is running. - uint32_t _modification_count = 0; + uint32_t _modification_count; void init_capacity(int capacity) { _capacity = capacity;