diff options
| author | Carson Fleming <cflems@cflems.net> | 2026-07-29 23:58:55 -0400 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2026-07-29 23:58:55 -0400 |
| commit | 3445947c072a4cd533f5f3a53178f77361859123 (patch) | |
| tree | 9ba7d330b1091fdad76bbb190579491e022dc3d3 /ast.h | |
| parent | 29510d33cab6e86b28b12c6246bca58acdab26e2 (diff) | |
| download | ccc-3445947c072a4cd533f5f3a53178f77361859123.tar.gz | |
improve type system
Diffstat (limited to 'ast.h')
| -rw-r--r-- | ast.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ struct expr_list_node { struct expr_node* expr; struct expr_list_node* next; - struct type* resolved_type; + const struct type* resolved_type; }; struct int_lit_node { @@ -104,7 +104,7 @@ struct expr_node { struct paren_node paren; } inner; - struct type* resolved_type; + const struct type* resolved_type; }; struct group_node { |
