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/container/priority_queue.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/container/priority_queue.odin') diff --git a/core/container/priority_queue.odin b/core/container/priority_queue.odin index 8f3f6bb32..f1ceac3a4 100644 --- a/core/container/priority_queue.odin +++ b/core/container/priority_queue.odin @@ -1,6 +1,6 @@ package container -Priority_Queue :: struct(T: typeid) { +Priority_Queue :: struct($T: typeid) { data: Array(T), len: int, priority: proc(item: T) -> int, -- cgit v1.2.3