@@ -243,7 +243,7 @@ MarkExplicitlyEscaping::create(ConstraintSystem &cs, Type lhs, Type rhs,
243243bool MarkGlobalActorFunction::diagnose (const Solution &solution,
244244 bool asNote) const {
245245 DroppedGlobalActorFunctionAttr failure (
246- solution, getFromType (), getToType (), getLocator (), diagfixBehavior () );
246+ solution, getFromType (), getToType (), getLocator (), fixBehavior );
247247 return failure.diagnose (asNote);
248248}
249249
@@ -263,7 +263,7 @@ bool AddSendableAttribute::diagnose(const Solution &solution,
263263 bool asNote) const {
264264 AttributedFuncToTypeConversionFailure failure (
265265 solution, getFromType (), getToType (), getLocator (),
266- AttributedFuncToTypeConversionFailure::Concurrent, diagfixBehavior () );
266+ AttributedFuncToTypeConversionFailure::Concurrent, fixBehavior );
267267 return failure.diagnose (asNote);
268268}
269269
@@ -1639,7 +1639,7 @@ bool TreatEphemeralAsNonEphemeral::diagnose(const Solution &solution,
16391639 bool asNote) const {
16401640 NonEphemeralConversionFailure failure (solution, getLocator (), getFromType (),
16411641 getToType (), ConversionKind,
1642- diagfixBehavior () );
1642+ fixBehavior );
16431643 return failure.diagnose (asNote);
16441644}
16451645
@@ -2233,7 +2233,7 @@ IgnoreDefaultExprTypeMismatch::create(ConstraintSystem &cs, Type argType,
22332233bool AddExplicitExistentialCoercion::diagnose (const Solution &solution,
22342234 bool asNote) const {
22352235 MissingExplicitExistentialCoercion failure (solution, ErasedResultType,
2236- getLocator (), diagfixBehavior () );
2236+ getLocator (), fixBehavior );
22372237 return failure.diagnose (asNote);
22382238}
22392239
0 commit comments