diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-21 13:14:38 +0000 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-12-21 13:14:38 +0000 |
| commit | 8b745c3909a3482aebe27998d8b870286e448e35 (patch) | |
| tree | 76e189d5d510ba203de52d39b779d4aff95960ad | |
| parent | d139c72fc24fdb574861ac22fc11b91de944b2a4 (diff) | |
Remove `using` use in thread_other.odin
| -rw-r--r-- | core/thread/thread_other.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/thread/thread_other.odin b/core/thread/thread_other.odin index dde2a8e48..878119cbd 100644 --- a/core/thread/thread_other.odin +++ b/core/thread/thread_other.odin @@ -37,7 +37,7 @@ _destroy :: proc(thread: ^Thread) { unimplemented("core:thread procedure not supported on target") } -_terminate :: proc(using thread : ^Thread, exit_code: int) { +_terminate :: proc(thread : ^Thread, exit_code: int) { unimplemented("core:thread procedure not supported on target") } |