We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c960926 commit 8563911Copy full SHA for 8563911
lib/Sema/ConstraintGraph.cpp
@@ -702,8 +702,7 @@ bool ConstraintGraph::contractEdges() {
702
if (isParamBindingConstraint) {
703
auto *node = tyvar1->getImpl().getGraphNode();
704
auto constraints = node->getConstraints();
705
- if (std::any_of(constraints.begin(), constraints.end(),
706
- [](Constraint *constraint) {
+ if (llvm::any_of(constraints, [](Constraint *constraint) {
707
return isStrictInoutSubtypeConstraint(constraint);
708
})) {
709
continue;
0 commit comments