aboutsummaryrefslogtreecommitdiff
path: root/core/thread
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2018-05-27 13:49:55 +0100
committergingerBill <bill@gingerbill.org>2018-05-27 13:49:55 +0100
commit86cf9383ea5a15cbc3b41f4e3b5a3ee160a04f64 (patch)
treef5585ebc10b8f9ed26f2b4682189b4f364b06149 /core/thread
parent307977d4cf6a2b0bd2004bd9facbab00d1e5cb57 (diff)
Fix delayed assert collection
Diffstat (limited to 'core/thread')
-rw-r--r--core/thread/thread_windows.odin (renamed from core/thread/thread.odin)1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/thread/thread.odin b/core/thread/thread_windows.odin
index 2289c6bc6..adf59b898 100644
--- a/core/thread/thread.odin
+++ b/core/thread/thread_windows.odin
@@ -1,6 +1,5 @@
package thread
-#assert(ODIN_OS == "windows");
import "core:sys/win32"
Thread_Proc :: #type proc(^Thread) -> int;