aboutsummaryrefslogtreecommitdiff
path: root/core/container/small_array.odin
diff options
context:
space:
mode:
Diffstat (limited to 'core/container/small_array.odin')
-rw-r--r--core/container/small_array.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/container/small_array.odin b/core/container/small_array.odin
index 235c42a77..014837631 100644
--- a/core/container/small_array.odin
+++ b/core/container/small_array.odin
@@ -1,6 +1,6 @@
package container
-Small_Array :: struct(N: int, T: typeid) where N >= 0 {
+Small_Array :: struct($N: int, $T: typeid) where N >= 0 {
data: [N]T,
len: int,
}