aboutsummaryrefslogtreecommitdiff
path: root/core/container/priority_queue.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-03-26 16:24:56 +0000
committergingerBill <bill@gingerbill.org>2021-03-26 16:24:56 +0000
commit43ac6ca8f4e68e87f673768d22429119422c325f (patch)
tree37f8703caaf8c62274f8383fc7411fb8b95a60dc /core/container/priority_queue.odin
parent62d2656f69cf2302d27a0059b7d3f9ade01df100 (diff)
Add `linalg.matrix_cast`
Diffstat (limited to 'core/container/priority_queue.odin')
-rw-r--r--core/container/priority_queue.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/container/priority_queue.odin b/core/container/priority_queue.odin
index 4b1a76c37..8f3f6bb32 100644
--- a/core/container/priority_queue.odin
+++ b/core/container/priority_queue.odin
@@ -3,7 +3,7 @@ package container
Priority_Queue :: struct(T: typeid) {
data: Array(T),
len: int,
- priority: proc(item: T) -> int
+ priority: proc(item: T) -> int,
}
priority_queue_init_none :: proc(q: ^$Q/Priority_Queue($T), f: proc(item: T) -> int, allocator := context.allocator) {