Change internal map indices to use a distinct uint rather than just int

This commit is contained in:
gingerBill
2022-09-17 12:21:23 +01:00
parent c462496bd5
commit b967ae2739
3 changed files with 28 additions and 26 deletions
+1 -1
View File
@@ -394,7 +394,7 @@ Raw_Dynamic_Array :: struct {
}
Raw_Map :: struct {
hashes: []int,
hashes: []Map_Index,
entries: Raw_Dynamic_Array,
}