[llvm] r299832 - Remove unused method.

Zachary Turner via llvm-commits llvm-commits at lists.llvm.org
Sun Apr 9 23:30:28 PDT 2017


Author: zturner
Date: Mon Apr 10 01:30:28 2017
New Revision: 299832

URL: http://llvm.org/viewvc/llvm-project?rev=299832&view=rev
Log:
Remove unused method.

This is causing build breaks, but it's unused anyway, so delete
it.

Modified:
    llvm/trunk/include/llvm/DebugInfo/PDB/IPDBSession.h

Modified: llvm/trunk/include/llvm/DebugInfo/PDB/IPDBSession.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/DebugInfo/PDB/IPDBSession.h?rev=299832&r1=299831&r2=299832&view=diff
==============================================================================
--- llvm/trunk/include/llvm/DebugInfo/PDB/IPDBSession.h (original)
+++ llvm/trunk/include/llvm/DebugInfo/PDB/IPDBSession.h Mon Apr 10 01:30:28 2017
@@ -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;
 




More information about the llvm-commits mailing list