remove return statement from case Type_Info_Enumerated_Array, as it causes early exit in JSON unmarshalling.

This commit is contained in:
Kay
2024-02-12 01:45:11 -06:00
parent 4ca23499fa
commit 5f49b8997a

View File

@@ -492,7 +492,6 @@ unmarshal_object :: proc(p: ^Parser, v: any, end_token: Token_Kind) -> (err: Unm
}
}
return nil
case:
return UNSUPPORTED_TYPE
}