Browse Source

Keep -vet happy

gingerBill 4 years ago
parent
commit
fb8ad338d0
3 changed files with 0 additions and 4 deletions
  1. 0 1
      core/sync/sync.odin
  2. 0 2
      core/sync/sync2/extended.odin
  3. 0 1
      core/sync/sync2/primitives_atomic.odin

+ 0 - 1
core/sync/sync.odin

@@ -1,7 +1,6 @@
 package sync
 package sync
 
 
 import "intrinsics"
 import "intrinsics"
-import "core:runtime"
 
 
 cpu_relax :: #force_inline proc "contextless" () {
 cpu_relax :: #force_inline proc "contextless" () {
 	intrinsics.cpu_relax();
 	intrinsics.cpu_relax();

+ 0 - 2
core/sync/sync2/extended.odin

@@ -1,7 +1,5 @@
 package sync2
 package sync2
 
 
-import "core:runtime"
-
 // A Wait_Group waits for a collection of threads to finish
 // A Wait_Group waits for a collection of threads to finish
 //
 //
 // A Wait_Group must not be copied after first use
 // A Wait_Group must not be copied after first use

+ 0 - 1
core/sync/sync2/primitives_atomic.odin

@@ -1,7 +1,6 @@
 package sync2
 package sync2
 
 
 import "core:time"
 import "core:time"
-import "core:runtime"
 
 
 Atomic_Mutex_State :: enum i32 {
 Atomic_Mutex_State :: enum i32 {
 	Unlocked = 0,
 	Unlocked = 0,