[Lldb-commits] [lldb] r323586 - Remove unused class declarations
Jan Kratochvil via lldb-commits
lldb-commits at lists.llvm.org
Sat Jan 27 06:35:33 PST 2018
Author: jankratochvil
Date: Sat Jan 27 06:35:33 2018
New Revision: 323586
URL: http://llvm.org/viewvc/llvm-project?rev=323586&view=rev
Log:
Remove unused class declarations
Simplification by removing excessive DWARFCompileUnit references for D40466 .
Differential revision: https://reviews.llvm.org/D42613
Modified:
lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h?rev=323586&r1=323585&r2=323586&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h Sat Jan 27 06:35:33 2018
@@ -13,8 +13,6 @@
#include "DWARFAttribute.h"
#include "SymbolFileDWARF.h"
-class DWARFCompileUnit;
-
class DWARFAbbreviationDeclaration {
public:
enum { InvalidCode = 0 };
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h?rev=323586&r1=323585&r2=323586&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h Sat Jan 27 06:35:33 2018
@@ -21,10 +21,6 @@
#include "DWARFFormValue.h"
#include "NameToDIE.h"
-class SymbolFileDWARF;
-class DWARFCompileUnit;
-class DWARFDebugInfoEntry;
-
class DWARFMappedHash {
public:
enum AtomType : uint16_t {
More information about the lldb-commits
mailing list