Skip to content

Commit 666abe1

Browse files
committed
[FOLD] address review comments
1 parent ad6ff57 commit 666abe1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

clang/lib/AST/ASTImporter.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8634,13 +8634,14 @@ ASTNodeImporter::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) {
86348634
Importer.getToContext(), *ToNamingClassOrErr, *ToQualifierLocOrErr,
86358635
*ToTemplateKeywordLocOrErr, ToNameInfo, E->requiresADL(), &ToTAInfo,
86368636
ToDecls.begin(), ToDecls.end(), KnownDependent,
8637-
E->isInstantiationDependent());
8637+
/*KnownInstantiationDependent=*/E->isInstantiationDependent());
86388638
}
86398639

86408640
return UnresolvedLookupExpr::Create(
86418641
Importer.getToContext(), *ToNamingClassOrErr, *ToQualifierLocOrErr,
86428642
ToNameInfo, E->requiresADL(), ToDecls.begin(), ToDecls.end(),
8643-
/*KnownDependent=*/E->isTypeDependent(), E->isInstantiationDependent());
8643+
/*KnownDependent=*/E->isTypeDependent(),
8644+
/*KnownInstantiationDependent=*/E->isInstantiationDependent());
86448645
}
86458646

86468647
ExpectedStmt

0 commit comments

Comments
 (0)