[Index] Remove unused index::IndexDataConsumer::_anchor()
authorFangrui Song <maskray@google.com>
Thu, 5 Jul 2018 00:33:03 +0000 (00:33 +0000)
committerFangrui Song <maskray@google.com>
Thu, 5 Jul 2018 00:33:03 +0000 (00:33 +0000)
It was supposed to serve as a key function, but it was invalid as it was not the first out-of-line non-pure virtual function.

llvm-svn: 336300

clang/include/clang/Index/IndexDataConsumer.h
clang/lib/Index/IndexingAction.cpp

index 53cdea9..8115b04 100644 (file)
@@ -54,9 +54,6 @@ public:
                                      SymbolRoleSet Roles, SourceLocation Loc);
 
   virtual void finish() {}
-
-private:
-  virtual void _anchor();
 };
 
 } // namespace index
index c8f6580..e378a09 100644 (file)
@@ -19,8 +19,6 @@
 using namespace clang;
 using namespace clang::index;
 
-void IndexDataConsumer::_anchor() {}
-
 bool IndexDataConsumer::handleDeclOccurence(const Decl *D, SymbolRoleSet Roles,
                                             ArrayRef<SymbolRelation> Relations,
                                             SourceLocation Loc,