authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-02-01 17:50:46-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-02-01 17:50:46-07:00
log0b94c83debd00846fb878f87323bdf16aa07bffc
tree905bafb505bda87177a030e5f726e47c14d4f845
parent06f6acb4b19cab55dd8637a41c11501bf8e7158e

remove the constructor of hash map


1 files changed, 1 insertions(+), 1 deletions(-)

src/hash_map.hpp+1-1
......@@ -151,7 +151,7 @@ private:
151151 int _size;
152152 int _max_distance_from_start_index;
153153 // this is used to detect bugs where a hashtable is edited while an iterator is running.
154 uint32_t _modification_count = 0;
154 uint32_t _modification_count;
155155
156156 void init_capacity(int capacity) {
157157 _capacity = capacity;