Remove unused method.
authorZachary Turner <zturner@google.com>
Mon, 10 Apr 2017 06:30:28 +0000 (06:30 +0000)
committerZachary Turner <zturner@google.com>
Mon, 10 Apr 2017 06:30:28 +0000 (06:30 +0000)
This is causing build breaks, but it's unused anyway, so delete
it.

llvm-svn: 299832

llvm/include/llvm/DebugInfo/PDB/IPDBSession.h

index 64b7665..696736a 100644 (file)
@@ -45,12 +45,6 @@ public:
     return std::unique_ptr<T>(ConcreteSymbol);
   }
 
-  template <>
-  std::unique_ptr<PDBSymbol>
-  getConcreteSymbolById<PDBSymbol>(uint32_t SymbolId) const {
-    return getSymbolById(SymbolId);
-  }
-
   virtual std::unique_ptr<PDBSymbol>
   findSymbolByAddress(uint64_t Address, PDB_SymType Type) const = 0;