@@ -243,7 +243,7 @@ MarkExplicitlyEscaping::create(ConstraintSystem &cs, Type lhs, Type rhs,
243
243
bool MarkGlobalActorFunction::diagnose (const Solution &solution,
244
244
bool asNote) const {
245
245
DroppedGlobalActorFunctionAttr failure (
246
- solution, getFromType (), getToType (), getLocator (), diagfixBehavior () );
246
+ solution, getFromType (), getToType (), getLocator (), fixBehavior );
247
247
return failure.diagnose (asNote);
248
248
}
249
249
@@ -263,7 +263,7 @@ bool AddSendableAttribute::diagnose(const Solution &solution,
263
263
bool asNote) const {
264
264
AttributedFuncToTypeConversionFailure failure (
265
265
solution, getFromType (), getToType (), getLocator (),
266
- AttributedFuncToTypeConversionFailure::Concurrent, diagfixBehavior () );
266
+ AttributedFuncToTypeConversionFailure::Concurrent, fixBehavior );
267
267
return failure.diagnose (asNote);
268
268
}
269
269
@@ -1639,7 +1639,7 @@ bool TreatEphemeralAsNonEphemeral::diagnose(const Solution &solution,
1639
1639
bool asNote) const {
1640
1640
NonEphemeralConversionFailure failure (solution, getLocator (), getFromType (),
1641
1641
getToType (), ConversionKind,
1642
- diagfixBehavior () );
1642
+ fixBehavior );
1643
1643
return failure.diagnose (asNote);
1644
1644
}
1645
1645
@@ -2233,7 +2233,7 @@ IgnoreDefaultExprTypeMismatch::create(ConstraintSystem &cs, Type argType,
2233
2233
bool AddExplicitExistentialCoercion::diagnose (const Solution &solution,
2234
2234
bool asNote) const {
2235
2235
MissingExplicitExistentialCoercion failure (solution, ErasedResultType,
2236
- getLocator (), diagfixBehavior () );
2236
+ getLocator (), fixBehavior );
2237
2237
return failure.diagnose (asNote);
2238
2238
}
2239
2239
0 commit comments