Change return to panic

This commit is contained in:
gingerBill
2024-03-13 15:17:21 +00:00
parent dee66b8451
commit 5f2496226f
+1 -1
View File
@@ -418,7 +418,7 @@ map_insert_hash_dynamic :: proc "odin" (#no_alias m: ^Raw_Map, #no_alias info: ^
swap_loop: for {
if distance > mask {
// Failed to find an empty slot and prevent infinite loop
return 0
panic("unable to insert into a map")
}
element_hash := hs[pos]