@@ -701,7 +701,7 @@ bool swift::isSendableType(ModuleDecl *module, Type type) {
701701 return false ;
702702
703703 // Look for missing Sendable conformances.
704- return !conformance.forEachMissingConformance (module ,
704+ return !conformance.forEachMissingConformance (
705705 [](BuiltinProtocolConformance *missing) {
706706 return missing->getProtocol ()->isSpecificProtocol (
707707 KnownProtocolKind::Sendable);
@@ -1082,7 +1082,7 @@ bool swift::diagnoseNonSendableTypes(
10821082
10831083 // Walk the conformance, diagnosing any missing Sendable conformances.
10841084 bool anyMissing = false ;
1085- conformance.forEachMissingConformance (module ,
1085+ conformance.forEachMissingConformance (
10861086 [&](BuiltinProtocolConformance *missing) {
10871087 if (diagnoseSingleNonSendableType (
10881088 missing->getType (), fromContext,
@@ -1281,7 +1281,7 @@ namespace {
12811281 return true ;
12821282
12831283 // Look for missing Sendable conformances.
1284- return conformance.forEachMissingConformance (module ,
1284+ return conformance.forEachMissingConformance (
12851285 [&](BuiltinProtocolConformance *missing) {
12861286 // For anything other than Sendable, fail.
12871287 if (missing->getProtocol () != sendableProto)
0 commit comments