diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-14 12:48:37 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-14 12:49:16 +0000 |
| commit | 2ea86eaa3df4727d86306bbfb0f17ec6bd82fa90 (patch) | |
| tree | 8a0401a2b2a700194501b2f04f2de6c4b88525fd /src/ast | |
| parent | 55597a93028e9dbf2314171257f42e0104023896 (diff) | |
Changed (non-standard) to a more standard approach with .
Diffstat (limited to 'src/ast')
| -rw-r--r-- | src/ast/ast.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ast/ast.h b/src/ast/ast.h index cf082a7..a5d3d0a 100644 --- a/src/ast/ast.h +++ b/src/ast/ast.h @@ -54,7 +54,8 @@ typedef struct Type struct Type **args; // For GENERIC args. int arg_count; int is_const; - union { + union + { int array_size; // For fixed-size arrays [T; N]. int is_varargs; // For function types (...). int is_restrict; // For restrict pointers. |
