Update ConstraintSolver.cpp

This commit is contained in:
karl-police 2024-09-13 21:10:23 +02:00
parent b765d7bafd
commit 4bdf97e4c9

View file

@ -1422,8 +1422,13 @@ bool ConstraintSolver::tryDispatch(const PrimitiveTypeConstraint& c, NotNull<con
// This is probably the only thing that makes this not insane to do. // This is probably the only thing that makes this not insane to do.
if (auto refCount = unresolvedConstraints.find(c.freeType); refCount && *refCount > 1) if (auto refCount = unresolvedConstraints.find(c.freeType); refCount && *refCount > 1)
{ {
block(c.freeType, constraint); // canMutate here is used to check if the freeType is owned by the same constraint
return false; if (canMutate(c.freeType, constraint) == false)
{
// if it isn't owned by the same constraint, then we can block it
block(c.freeType, constraint);
return false;
}
} }
TypeId bindTo = c.primitiveType; TypeId bindTo = c.primitiveType;