File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -275,11 +275,13 @@ inference::PotentialBindings &ConstraintGraphNode::getCurrentBindings() {
275
275
276
276
static bool isUsefulForReferencedVars (Constraint *constraint) {
277
277
switch (constraint->getKind ()) {
278
- // Don't attempt to propagate information about `Bind`s to referenced
279
- // variables since they are adjacent through that binding already, and
280
- // there is no useful information in trying to process that kind of
278
+ // Don't attempt to propagate information about `Bind`s and
279
+ // `BindOverload`s to referenced variables since they are
280
+ // adjacent through that binding already, and there is no
281
+ // useful information in trying to process that kind of
281
282
// constraint.
282
283
case ConstraintKind::Bind:
284
+ case ConstraintKind::BindOverload:
283
285
return false ;
284
286
285
287
default :
You can’t perform that action at this time.
0 commit comments