diff options
author | Zachary Turner <zturner@google.com> | 2017-04-10 06:30:28 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-04-10 06:30:28 +0000 |
commit | fd9c8645c6d325950dcb8e84ebcaad2a712f52c4 (patch) | |
tree | 3cf8f906aac76e353008c12a65e1ff488e2fa1ba | |
parent | 1b1a70f1725804fc1cd9cc490576791e01b01223 (diff) | |
download | bcm5719-llvm-fd9c8645c6d325950dcb8e84ebcaad2a712f52c4.tar.gz bcm5719-llvm-fd9c8645c6d325950dcb8e84ebcaad2a712f52c4.zip |
Remove unused method.
This is causing build breaks, but it's unused anyway, so delete
it.
llvm-svn: 299832
-rw-r--r-- | llvm/include/llvm/DebugInfo/PDB/IPDBSession.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h b/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h index 64b7665befd..696736a907a 100644 --- a/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h +++ b/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h @@ -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; |