File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4626,7 +4626,7 @@ class ConstraintSystem {
4626
4626
// / no fixed type. Such type variables are left to the solver to bind.
4627
4627
// /
4628
4628
// / \returns true if an error occurred, false otherwise.
4629
- bool simplify (bool ContinueAfterFailures = false );
4629
+ bool simplify ();
4630
4630
4631
4631
// / Simplify the given constraint.
4632
4632
SolutionKind simplifyConstraint (const Constraint &constraint);
Original file line number Diff line number Diff line change @@ -298,7 +298,7 @@ void ConstraintSystem::restoreTypeVariableBindings(unsigned numBindings) {
298
298
savedBindings.end ());
299
299
}
300
300
301
- bool ConstraintSystem::simplify (bool ContinueAfterFailures ) {
301
+ bool ConstraintSystem::simplify () {
302
302
// While we have a constraint in the worklist, process it.
303
303
while (!ActiveConstraints.empty ()) {
304
304
// Grab the next constraint from the worklist.
@@ -324,7 +324,7 @@ bool ConstraintSystem::simplify(bool ContinueAfterFailures) {
324
324
}
325
325
326
326
// Check whether a constraint failed. If so, we're done.
327
- if (failedConstraint && !ContinueAfterFailures ) {
327
+ if (failedConstraint) {
328
328
return true ;
329
329
}
330
330
You can’t perform that action at this time.
0 commit comments