[Lldb-commits] [lldb] r345092 - Remove unused private methods.

Zachary Turner via lldb-commits lldb-commits at lists.llvm.org
Tue Oct 23 15:15:28 PDT 2018


Author: zturner
Date: Tue Oct 23 15:15:27 2018
New Revision: 345092

URL: http://llvm.org/viewvc/llvm-project?rev=345092&view=rev
Log:
Remove unused private methods.

Modified:
    lldb/trunk/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h

Modified: lldb/trunk/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h?rev=345092&r1=345091&r2=345092&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h (original)
+++ lldb/trunk/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h Tue Oct 23 15:15:27 2018
@@ -149,14 +149,6 @@ public:
   ClangASTImporter &GetASTImporter() { return *m_importer; }
 
 private:
-  void AddBaseClassesToLayout(CompilerType &derived_ct,
-                              ClangASTImporter::LayoutInfo &layout,
-                              const llvm::codeview::ClassRecord &record);
-  void AddMembersToLayout(ClangASTImporter::LayoutInfo &layout,
-                          const llvm::codeview::TagRecord &record);
-  void AddMethodsToLayout(ClangASTImporter::LayoutInfo &layout,
-                          const llvm::codeview::TagRecord &record);
-
   size_t FindTypesByName(llvm::StringRef name, uint32_t max_matches,
                          TypeMap &types);
 




More information about the lldb-commits mailing list