Commit 0b94c83deb

Andrew Kelley <superjoe30@gmail.com>
2016-02-02 01:50:46
remove the constructor of hash map
1 parent 06f6acb
Changed files (1)
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;