Explicitly handle previously implicitly handled case

This commit is contained in:
Victor Sohier
2024-05-06 18:04:35 -04:00
parent a9b18c1ec0
commit 6cb0f5d8c5

View File

@@ -1410,6 +1410,7 @@ gb_internal bool is_polymorphic_type_assignable(CheckerContext *c, Type *poly, T
poly->Struct.soa_kind != StructSoa_None) {
bool ok = is_polymorphic_type_assignable(c, poly->Struct.soa_elem, source->Struct.soa_elem, true, modify_type);
if (ok) switch (source->Struct.soa_kind) {
case StructSoa_None:
default:
GB_PANIC("Unhandled SOA Kind");
break;