diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-10-01 17:09:57 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-10-01 17:09:57 +0100 |
| commit | c1e720a49b3dedf5ad8f0b4b2b444bf3f160834f (patch) | |
| tree | 84acc5f822df2d2eea85564d0077f730ae15644d /core/thread.odin | |
| parent | f38c8875b2211ac6112ff7b17e3cbb31a09757fb (diff) | |
`match` to `switch`; Optional semicolons after "import" statements
Diffstat (limited to 'core/thread.odin')
| -rw-r--r-- | core/thread.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/thread.odin b/core/thread.odin index 51d4b2da4..6a8058d53 100644 --- a/core/thread.odin +++ b/core/thread.odin @@ -1,7 +1,7 @@ _ :: compile_assert(ODIN_OS == "windows"); when ODIN_OS == "windows" { - import win32 "core:sys/windows.odin"; + import win32 "core:sys/windows.odin" } Thread_Proc :: #type proc(^Thread) -> int; |