diff options
| author | gingerBill <bill@gingerbill.org> | 2021-08-31 22:32:53 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-08-31 22:32:53 +0100 |
| commit | f57201bbd1f85772536e050b490a313ca62cb1b7 (patch) | |
| tree | 962ce81e9548d57f84cdab5cadd279f8172d0464 /core/thread | |
| parent | 2db6fea6655215452d445f327cadda815d65afd9 (diff) | |
Remove unneeded semicolons from the core library
Diffstat (limited to 'core/thread')
| -rw-r--r-- | core/thread/thread.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/thread/thread.odin b/core/thread/thread.odin index fe3e2ffb7..d4cdf08e3 100644 --- a/core/thread/thread.odin +++ b/core/thread/thread.odin @@ -23,7 +23,7 @@ Thread :: struct { creation_allocator: mem.Allocator, } -#assert(size_of(Thread{}.user_index) == size_of(uintptr)); +#assert(size_of(Thread{}.user_index) == size_of(uintptr)) Thread_Priority :: enum { Normal, |