mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
Minor correction to __get_map_header
This commit is contained in:
@@ -139,7 +139,7 @@ __get_map_header :: proc "contextless" (m: ^$T/map[$K]$V) -> Map_Header {
|
|||||||
header := Map_Header{m = (^Raw_Map)(m)}
|
header := Map_Header{m = (^Raw_Map)(m)}
|
||||||
Entry :: struct {
|
Entry :: struct {
|
||||||
hash: uintptr,
|
hash: uintptr,
|
||||||
next: int,
|
next: Map_Index,
|
||||||
key: K,
|
key: K,
|
||||||
value: V,
|
value: V,
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user