about summary refs log tree commit diff
path: root/boot/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'boot/tree.c')
-rw-r--r--boot/tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/boot/tree.c b/boot/tree.c
index 228bbd4..751cf02 100644
--- a/boot/tree.c
+++ b/boot/tree.c
@@ -433,7 +433,7 @@ struct Argument_Group_Node
     struct Expression* arguments;
     // names of the arguments, if given.
     // an unnamed argument is represented as an empty string.
-    struct String_Array argument_names;
+    Array(struct String) argument_names;
 };
 
 // a declaration of a variable, constant, or other binding, without a mutability
@@ -442,7 +442,7 @@ struct Argument_Group_Node
 // a bare declaration in a for-loop, for example, is always mutable.
 struct Bare_Declaration_Node
 {
-    struct String_Array names;
+    Array(struct String) names;
     struct Expression* initializer;
     struct Type_Node* type;