Browse Source

Remove unused headers

gingerBill 5 years ago
parent
commit
026bb8ed6f
2 changed files with 0 additions and 7 deletions
  1. 0 3
      core/container/map.odin
  2. 0 4
      core/container/set.odin

+ 0 - 3
core/container/map.odin

@@ -1,8 +1,5 @@
 package container
 package container
 
 
-import "core:mem"
-import "intrinsics"
-
 
 
 Map :: struct(Value: typeid) {
 Map :: struct(Value: typeid) {
 	hash: Array(int),
 	hash: Array(int),

+ 0 - 4
core/container/set.odin

@@ -1,9 +1,5 @@
 package container
 package container
 
 
-import "core:mem"
-import "intrinsics"
-
-
 Set :: struct {
 Set :: struct {
 	hash:    Array(int),
 	hash:    Array(int),
 	entries: Array(Set_Entry),
 	entries: Array(Set_Entry),