Browse Source

Force used of imports in `reflect/map.odin`

gingerBill 5 năm trước cách đây
mục cha
commit
b94dde2817
1 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 2 0
      core/reflect/map.odin

+ 2 - 0
core/reflect/map.odin

@@ -2,6 +2,8 @@ package reflect
 
 import "core:runtime"
 import "core:mem"
+_ :: runtime;
+_ :: mem;
 
 Map_Entry_Info :: struct(Key, Value: typeid) {
 	hash:  u64,