Change uses for parapoly records to use $ always

This commit is contained in:
gingerBill
2021-06-14 11:43:35 +01:00
parent d4df325e0a
commit 3e7aabe6d8
13 changed files with 20 additions and 19 deletions
+1 -1
View File
@@ -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,
}