File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -5300,6 +5300,12 @@ class ConstraintSystem {
5300
5300
SmallVectorImpl<unsigned > &Ordering,
5301
5301
SmallVectorImpl<unsigned > &PartitionBeginning);
5302
5302
5303
+ // / The overload sets that have already been resolved along the current path.
5304
+ const llvm::MapVector<ConstraintLocator *, SelectedOverload> &
5305
+ getResolvedOverloads () const {
5306
+ return ResolvedOverloads;
5307
+ }
5308
+
5303
5309
// / If we aren't certain that we've emitted a diagnostic, emit a fallback
5304
5310
// / diagnostic.
5305
5311
void maybeProduceFallbackDiagnostic (SolutionApplicationTarget target) const ;
Original file line number Diff line number Diff line change @@ -213,11 +213,6 @@ class SolverStep {
213
213
CS.CG .addConstraint (constraint);
214
214
}
215
215
216
- const llvm::MapVector<ConstraintLocator *, SelectedOverload> &
217
- getResolvedOverloads () const {
218
- return CS.ResolvedOverloads ;
219
- }
220
-
221
216
void recordDisjunctionChoice (ConstraintLocator *disjunctionLocator,
222
217
unsigned index) const {
223
218
CS.recordDisjunctionChoice (disjunctionLocator, index);
You can’t perform that action at this time.
0 commit comments