Merge pull request #38753 from CodaFi/modulo-modules

[NFC] Remove Unused Module Parameter to Conformance Lookup
This commit is contained in:
Robert Widmann
2021-08-11 10:36:39 -07:00
committed by GitHub
20 changed files with 20 additions and 37 deletions

View File

@@ -609,7 +609,7 @@ ModuleFile::readConformanceChecked(llvm::BitstreamCursor &Cursor,
module = getAssociatedModule();
SmallVector<ProtocolConformance *, 2> conformances;
nominal->lookupConformance(module, proto, conformances);
nominal->lookupConformance(proto, conformances);
PrettyStackTraceModuleFile traceMsg(
"If you're seeing a crash here, check that your SDK and dependencies "
"are at least as new as the versions used to build", *this);