diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-07-30 14:37:53 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-07-30 14:37:53 -0400 |
| commit | d1f967ffb4dc099a34f54434be10a58eb33b81f7 (patch) | |
| tree | e959c8de3024351f2169a9b6f06ba7d0cdb46c22 /src/ast.h | |
| parent | e8e00267ae57c152739362ef623393d9816aa9d5 (diff) | |
Struct reordering to improve packing
Diffstat (limited to 'src/ast.h')
| -rw-r--r-- | src/ast.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,8 +76,8 @@ typedef enum { typedef struct tag_ast_s { const char *name; arg_ast_t *fields; - bool secret:1; struct tag_ast_s *next; + bool secret:1; } tag_ast_t; struct type_ast_s { |
