aboutsummaryrefslogtreecommitdiff
path: root/core/sync_windows.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2017-06-13 15:04:23 +0100
committerGinger Bill <bill@gingerbill.org>2017-06-13 15:04:23 +0100
commit6a88dc322acfd54c55ed7dceebdeaa5ce18ce416 (patch)
tree1bee3c6bd331cf7427451de9476564a9f7b030c9 /core/sync_windows.odin
parent6b464e35586ebc8a8dadece60f188817f875da85 (diff)
Declaration grouping uses braces rather than parentheses
Diffstat (limited to 'core/sync_windows.odin')
-rw-r--r--core/sync_windows.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sync_windows.odin b/core/sync_windows.odin
index 353fb755f..524124d36 100644
--- a/core/sync_windows.odin
+++ b/core/sync_windows.odin
@@ -1,7 +1,7 @@
-import (
+import {
win32 "sys/windows.odin" when ODIN_OS == "windows";
"atomics.odin";
-)
+}
type Semaphore struct {
_handle: win32.Handle,