summaryrefslogtreecommitdiff
path: root/types.c
diff options
context:
space:
mode:
Diffstat (limited to 'types.c')
-rw-r--r--types.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/types.c b/types.c
index 2384f32..ab186d1 100644
--- a/types.c
+++ b/types.c
@@ -27,8 +27,6 @@ static bool type_eq(Type *a, Type *b) {
return true; /* allow things such as 3 + #C("5") */
assert(a->flags & TYPE_IS_RESOLVED);
assert(b->flags & TYPE_IS_RESOLVED);
-
- /* TODO: deal with was_expr */
if (a->kind != b->kind) return false;
if (b->flags & TYPE_IS_FLEXIBLE) {