[Lldb-commits] [PATCH] D78000: [ASTImporter] Fix handling of not defined FromRecord in ImportContext(...)
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Apr 20 09:44:00 PDT 2020
teemperor added a comment.
Beside Gabors comment I think I'm happy with this. Thanks!
================
Comment at: clang/unittests/AST/ASTImporterTest.cpp:5939
+
+/// An ExternalASTSource that keeps track of the tags is completed.
+struct SourceWithCompletedTagList : clang::ExternalASTSource {
----------------
"is completed" -> "it completed"
================
Comment at: clang/unittests/AST/ASTImporterTest.cpp:5954
+ SmallVectorImpl<Decl *> &Result) override {
+ DC->setHasExternalLexicalStorage(true);
+ }
----------------
You can remove this as you changed the check in the ASTImporter to only check for the existence of an ExternalASTSource.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78000/new/
https://reviews.llvm.org/D78000
More information about the lldb-commits
mailing list