aboutsummaryrefslogtreecommitdiff
path: root/core/container/array.odin
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-06-14 11:43:35 +0100
committergingerBill <bill@gingerbill.org>2021-06-14 11:43:35 +0100
commit3e7aabe6d83797f7451300a5c8e6fb4a5c1804d2 (patch)
tree1d478a40ae1ac927846700c1d130ab4ce639607e /core/container/array.odin
parentd4df325e0a2cfe1d6de90667099d9ac43e269029 (diff)
Change uses for parapoly records to use `$` always
Diffstat (limited to 'core/container/array.odin')
-rw-r--r--core/container/array.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/container/array.odin b/core/container/array.odin
index 1f2cdc58c..74dcd847f 100644
--- a/core/container/array.odin
+++ b/core/container/array.odin
@@ -3,7 +3,7 @@ package container
import "core:mem"
import "core:runtime"
-Array :: struct(T: typeid) {
+Array :: struct($T: typeid) {
data: ^T,
len: int,
cap: int,