From 566a7508990632726a181b12459538b9898bc72e Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Fri, 7 Jan 2022 06:12:00 +0100 Subject: [PATCH] Fix unused imports. --- core/sort/map.odin | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/sort/map.odin b/core/sort/map.odin index dff2dced3..32f5e09a2 100644 --- a/core/sort/map.odin +++ b/core/sort/map.odin @@ -4,6 +4,9 @@ import "core:intrinsics" import "core:runtime" import "core:slice" +_ :: runtime +_ :: slice + map_entries_by_key :: proc(m: ^$M/map[$K]$V, loc := #caller_location) where intrinsics.type_is_ordered(K) { Entry :: struct { hash: uintptr,