diff options
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, |