Skip to content

Commit 561a686

Browse files
authored
Merge pull request #70716 from xedin/fix-csbindings
[CSBindings] NFC: Fix a missing return warning in `BindingSet::finalize`
2 parents e2f888b + 4407c0d commit 561a686

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Sema/CSBindings.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,9 +753,9 @@ bool BindingSet::finalize(
753753
});
754754
}
755755
}
756-
757-
return true;
758756
}
757+
758+
return true;
759759
}
760760

761761
void BindingSet::addBinding(PotentialBinding binding, bool isTransitive) {

0 commit comments

Comments
 (0)