Browse Source

Merge pull request #1410 from Kelimion/sort_map

Fix unused imports.
Jeroen van Rijn 3 năm trước cách đây
mục cha
commit
b02f2953ac
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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,