Minor correction to __get_map_header

This commit is contained in:
gingerBill
2022-09-17 17:48:38 +01:00
parent cb207afdf3
commit 3fb69d59bb

View File

@@ -139,7 +139,7 @@ __get_map_header :: proc "contextless" (m: ^$T/map[$K]$V) -> Map_Header {
header := Map_Header{m = (^Raw_Map)(m)}
Entry :: struct {
hash: uintptr,
next: int,
next: Map_Index,
key: K,
value: V,
}