aboutsummaryrefslogtreecommitdiff
path: root/core/thread/thread.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-08-31 22:32:53 +0100
committergingerBill <bill@gingerbill.org>2021-08-31 22:32:53 +0100
commitf57201bbd1f85772536e050b490a313ca62cb1b7 (patch)
tree962ce81e9548d57f84cdab5cadd279f8172d0464 /core/thread/thread.odin
parent2db6fea6655215452d445f327cadda815d65afd9 (diff)
Remove unneeded semicolons from the core library
Diffstat (limited to 'core/thread/thread.odin')
-rw-r--r--core/thread/thread.odin2
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,