From 6b2ce6de6f4f62bb239645f3fb9378af8968da8b Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Fri, 13 Sep 2024 15:32:26 +0200 Subject: [PATCH] Fix unreachable. --- src/compiler/ast.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/ast.c b/src/compiler/ast.c index 409a28917..e1b8769a8 100644 --- a/src/compiler/ast.c +++ b/src/compiler/ast.c @@ -383,6 +383,7 @@ bool decl_is_global(Decl *ident) case VARDECL_LOCAL_CT_TYPE: return false; } + UNREACHABLE } bool decl_is_local(Decl *decl)