From 3e7aabe6d83797f7451300a5c8e6fb4a5c1804d2 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 14 Jun 2021 11:43:35 +0100 Subject: Change uses for parapoly records to use `$` always --- core/sync/channel.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/sync') 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, } -- cgit v1.2.3