[PATCH] D38694: [ASTImporter] Support importing CXXUnresolvedConstructExpr and UnresolvedLookupExpr
Gábor Horváth via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 4 06:16:08 PST 2017
xazax.hun added inline comments.
================
Comment at: lib/AST/ASTImporter.cpp:5877
+ DeclarationName Name = Importer.Import(E->getName());
+ if (E->getName().isEmpty() && Name.isEmpty())
+ return nullptr;
----------------
Is this condition correct?
https://reviews.llvm.org/D38694
More information about the cfe-commits
mailing list