check-structures-sanity: print error for untagged unions instead of aborting

These come up in structures such as world.poetic_forms.all[i].subject_target
without a clear fix.
develop
lethosor 2021-08-31 00:28:42 -04:00
parent dc86460238
commit 27ce7cf1ee
No known key found for this signature in database
GPG Key ID: 76A269552F4F58C1
1 changed files with 1 additions and 1 deletions

@ -767,7 +767,7 @@ void Checker::dispatch_untagged_union(const QueueItem & item, const CheckedStruc
return;
}
UNEXPECTED;
FAIL("unhandled untagged union: " << item.path);
}
void Checker::check_unknown_pointer(const QueueItem & item)