diff options
| author | gingerBill <bill@gingerbill.org> | 2022-09-17 17:48:38 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-09-17 17:48:38 +0100 |
| commit | 3fb69d59bb5d2ae5e74e6d8a8a2eb00059f4e0d7 (patch) | |
| tree | f4b3a57fb33973b4487a9e9d63d02464324cad52 /core/runtime/dynamic_map_internal.odin | |
| parent | cb207afdf390462e2eb1bcafb1708f55fe63bef1 (diff) | |
Minor correction to `__get_map_header`
Diffstat (limited to 'core/runtime/dynamic_map_internal.odin')
| -rw-r--r-- | core/runtime/dynamic_map_internal.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/dynamic_map_internal.odin b/core/runtime/dynamic_map_internal.odin index 6ca9455ef..e63109f46 100644 --- a/core/runtime/dynamic_map_internal.odin +++ b/core/runtime/dynamic_map_internal.odin @@ -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, } |