From 0d4e9292d85a169f881926556992d4ae12dcb6f4 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Sat, 17 Aug 2024 20:52:23 +0300 Subject: actually enable clang compilation and apply fixes --- src/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ast.c') diff --git a/src/ast.c b/src/ast.c index f178e41..113357b 100644 --- a/src/ast.c +++ b/src/ast.c @@ -725,7 +725,7 @@ size_t type_size(struct type *t) case TYPE_I27: return 3; case TYPE_PTR: return 3; case TYPE_STRUCT: return struct_size(t); - default: + default: break; } assert(0 && "unhandled type to get size of"); -- cgit v1.3