aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-10-20 00:40:03 +0100
committergingerBill <bill@gingerbill.org>2021-10-20 00:40:03 +0100
commit82b6772ea4fa9872a1fb98305814be8cf7f2c7c4 (patch)
tree2a10e6b99987750e655af2843dc288f4c6eb6a83 /core/runtime
parent662cbaf425a54127dea206c3a35d776853bac169 (diff)
Support matrix literals
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/core.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin
index 611b4002c..ba1e81da6 100644
--- a/core/runtime/core.odin
+++ b/core/runtime/core.odin
@@ -165,7 +165,7 @@ Type_Info_Relative_Slice :: struct {
Type_Info_Matrix :: struct {
elem: ^Type_Info,
elem_size: int,
- stride: int, // bytes
+ elem_stride: int,
row_count: int,
column_count: int,
}