Skip to content

Commit 75c8a16

Browse files
committed
AST: Don't need to pass down the options here
1 parent 4b711b6 commit 75c8a16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/AST/SubstitutionMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ SubstitutionMap SubstitutionMap::subst(InFlightSubstitution &IFS) const {
381381
ProtocolConformanceRef(conformance.getConcrete()->subst(IFS)));
382382
} else {
383383
auto origType = req.getFirstType();
384-
auto substType = origType.subst(*this, IFS.getOptions());
384+
auto substType = origType.subst(*this);
385385

386386
newConformances.push_back(conformance.subst(substType, IFS));
387387
}

0 commit comments

Comments
 (0)