diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-09-11 22:49:26 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-09-11 22:49:26 +0100 |
| commit | cbcf4b6071a55a8e80c41647e81715cf8505bdf8 (patch) | |
| tree | 1f0c3a382460bd20e7790b31afe5ac46b9a99b39 /core/thread.odin | |
| parent | e6e0aba8c31f5c9ccec7d0113d63f5104df74ea1 (diff) | |
Fix issue #94
Diffstat (limited to 'core/thread.odin')
| -rw-r--r-- | core/thread.odin | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/thread.odin b/core/thread.odin index e6e8ce53b..e44879122 100644 --- a/core/thread.odin +++ b/core/thread.odin @@ -1,6 +1,8 @@ _ :: compile_assert(ODIN_OS == "windows"); -import win32 "core:sys/windows.odin"; +when ODIN_OS == "windows" { + import win32 "core:sys/windows.odin"; +} Thread :: struct { using specific: Os_Specific; |