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/stdlib/types.h | |
| parent | e8e00267ae57c152739362ef623393d9816aa9d5 (diff) | |
Struct reordering to improve packing
Diffstat (limited to 'src/stdlib/types.h')
| -rw-r--r-- | src/stdlib/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/types.h b/src/stdlib/types.h index 7d61a524..03b397b7 100644 --- a/src/stdlib/types.h +++ b/src/stdlib/types.h @@ -65,14 +65,14 @@ struct TypeInfo_s { } OptionalInfo; struct { const char *name; - int num_tags; NamedType_t *tags; + int num_tags; } EnumInfo; struct { const char *name; + NamedType_t *fields; int num_fields; bool is_secret:1, is_opaque:1; - NamedType_t *fields; } StructInfo; }; }; |
