Browse Source

Merge pull request #1410 from Kelimion/sort_map

Fix unused imports.
Jeroen van Rijn 3 years ago
parent
commit
b02f2953ac
1 changed files with 3 additions and 0 deletions
  1. 3 0
      core/sort/map.odin

+ 3 - 0
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,