Change record field syntax

This commit is contained in:
Ginger Bill
2016-12-18 22:23:34 +00:00
parent e370337f97
commit 4c10fbdcd4
11 changed files with 193 additions and 304 deletions
+5 -5
View File
@@ -2,14 +2,14 @@
#import "atomic.odin";
type Semaphore struct {
handle: win32.HANDLE;
handle win32.HANDLE;
}
type Mutex struct {
semaphore: Semaphore;
counter: i32;
owner: i32;
recursion: i32;
semaphore Semaphore;
counter i32;
owner i32;
recursion i32;
}