From 3fb69d59bb5d2ae5e74e6d8a8a2eb00059f4e0d7 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Sat, 17 Sep 2022 17:48:38 +0100 Subject: [PATCH] Minor correction to `__get_map_header` --- core/runtime/dynamic_map_internal.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, }