aboutsummaryrefslogtreecommitdiff
path: root/src/types.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-23 19:53:44 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-23 19:53:44 -0400
commit31249ee3c9626b5d89b1e3dd446885746370bf6a (patch)
treee74123c157cdb2de914ba8f1604598e3c71722a6 /src/types.c
parent4edddb7a3bb861a2bcb61af16395f5c9231cdd97 (diff)
Don't align trailing comments
Diffstat (limited to 'src/types.c')
-rw-r--r--src/types.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/types.c b/src/types.c
index e60483aa..e3a6efb5 100644
--- a/src/types.c
+++ b/src/types.c
@@ -503,7 +503,7 @@ PUREFUNC size_t type_size(type_t *t) {
size_t size = type_size(tag->type);
if (size > max_size) max_size = size;
}
- size_t size = sizeof(UnknownType); // generic enum
+ size_t size = sizeof(UnknownType); // generic enum
if (max_align > 1 && size % max_align > 0) // Padding before first union field
size += max_align - (size % max_align);
size += max_size;