diff options
Diffstat (limited to 'core/container/small_array.odin')
| -rw-r--r-- | core/container/small_array.odin | 2 |
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, } |