diff options
| author | gingerBill <bill@gingerbill.org> | 2021-06-14 11:43:35 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-06-14 11:43:35 +0100 |
| commit | 3e7aabe6d83797f7451300a5c8e6fb4a5c1804d2 (patch) | |
| tree | 1d478a40ae1ac927846700c1d130ab4ce639607e /core/container/small_array.odin | |
| parent | d4df325e0a2cfe1d6de90667099d9ac43e269029 (diff) | |
Change uses for parapoly records to use `$` always
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, } |