[Lldb-commits] [PATCH] D78000: [ASTImporter] Fix handling of not defined FromRecord in ImportContext(...)
Abhinav Gaba via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Sat May 2 14:50:49 PDT 2020
abhinavgaba added inline comments.
================
Comment at: clang/unittests/AST/ASTImporterTest.cpp:5974
+ SmallVectorImpl<Decl *> &Result) override {}
+};
+
----------------
Overloading `CompleteType(TagDecl*)` is causing a warning:
virtual void `clang::ExternalASTSource::CompleteType(clang::ObjCInterfaceDecl*)’ was hidden [-Woverloaded-virtual]`
One way to get rid of it would be to add this here :
private:
using ExternalASTSource::CompleteType;
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D78000/new/
https://reviews.llvm.org/D78000
More information about the lldb-commits
mailing list