Browse Source

Remove unneeded call

gingerBill 3 years ago
parent
commit
802df73183
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/runtime/dynamic_map_internal.odin

+ 1 - 1
core/runtime/dynamic_map_internal.odin

@@ -287,7 +287,7 @@ __dynamic_map_set :: proc(h: Map_Header, hash: Map_Hash, value: rawptr, loc := #
 
 
 	if __dynamic_map_full(h) {
 	if __dynamic_map_full(h) {
 		__dynamic_map_grow(h, loc)
 		__dynamic_map_grow(h, loc)
-		index = __dynamic_map_find(h, hash).entry_index
+		// index = __dynamic_map_find(h, hash).entry_index
 		// assert(index >= 0)
 		// assert(index >= 0)
 	}
 	}