aboutsummaryrefslogtreecommitdiff
path: root/src/ast.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-08-17 20:52:23 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-08-17 20:52:23 +0300
commit0d4e9292d85a169f881926556992d4ae12dcb6f4 (patch)
tree99229dbacc2f679772ae9ef897b09da0c664b2ff /src/ast.c
parent395efb9c8a0a0160a7b95769e9484bae5548bbde (diff)
downloadek-0d4e9292d85a169f881926556992d4ae12dcb6f4.tar.gz
ek-0d4e9292d85a169f881926556992d4ae12dcb6f4.zip
actually enable clang compilation and apply fixes
Diffstat (limited to 'src/ast.c')
-rw-r--r--src/ast.c2
1 files changed, 1 insertions, 1 deletions
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");