From 1843870dfd9c61ad7bef55b59afc241e06292e5a Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Tue, 7 Feb 2023 11:16:35 +0100 Subject: [PATCH] Fix MSVC --- src/compiler/types.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/compiler/types.c b/src/compiler/types.c index e0b040ae8..ae8904e72 100644 --- a/src/compiler/types.c +++ b/src/compiler/types.c @@ -504,6 +504,7 @@ bool type_is_comparable(Type *type) case TYPE_VECTOR: return true; } + UNREACHABLE } void type_mangle_introspect_name_to_buffer(Type *type)