diff options
Diffstat (limited to 'core/sync')
| -rw-r--r-- | core/sync/channel.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sync/channel.odin b/core/sync/channel.odin index 7eddbfaf0..551413651 100644 --- a/core/sync/channel.odin +++ b/core/sync/channel.odin @@ -13,7 +13,7 @@ Channel_Direction :: enum i8 { Recv = -1, } -Channel :: struct(T: typeid, Direction := Channel_Direction.Both) { +Channel :: struct($T: typeid, $Direction := Channel_Direction.Both) { using _internal: ^Raw_Channel, } |