commit 071fc649b9ed6f39e7e4747dbd395f880abc1ec2
parent 7c32d95ffdf77b982b1d50ee42c90cf8fbdd7643
Author: Drew DeVault <sir@cmpwn.com>
Date: Thu, 14 Jan 2021 16:10:56 -0500
type store: remove dead branch
Diffstat:
1 file changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/type_store.c b/src/type_store.c
@@ -40,11 +40,6 @@ type_is_assignable(struct type_store *store,
from = type_store_lookup_with_flags(store,
from, from->flags & ~TYPE_CONST);
}
-
- if (to->storage == TYPE_STORAGE_ARRAY
- && from->storage == TYPE_STORAGE_ARRAY) {
- }
-
if (to == from) {
return true;
}