From a160bfc352cb7e61b99e4796c7ea35c0383846c6 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Thu, 7 May 2020 12:33:17 +0200 Subject: [PATCH] Fixed incorrect fallthrough. --- src/compiler/ast.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/ast.c b/src/compiler/ast.c index 5f7ba291c..546b06050 100644 --- a/src/compiler/ast.c +++ b/src/compiler/ast.c @@ -443,6 +443,7 @@ void fprint_type_info_recursive(FILE *file, TypeInfo *type_info, int indent) DUMP("(incarray"); DUMPTI(type_info->array.base); DUMPE(); + break; case TYPE_INFO_EXPRESSION: DUMP("(typexpr"); DUMPEXPR(type_info->unresolved_type_expr);