From 2562df5387b2e6cac674c5981451cf1b78b717b5 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 22 Jun 2020 13:35:44 +0100 Subject: [PATCH] Remove unused imports in thread.odin --- core/thread/thread.odin | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/thread/thread.odin b/core/thread/thread.odin index 988e804d2..e38ed303b 100644 --- a/core/thread/thread.odin +++ b/core/thread/thread.odin @@ -1,8 +1,6 @@ package thread import "core:runtime" -import "core:os" -import "core:sync" Thread_Proc :: #type proc(^Thread);