Skip to content

Commit 3eaea18

Browse files
committed
[lldb][gardening] Remove full name of "DWARFDIE" type in GetTypeForDIE
When moving the GetTypeForDIE function from DWARFASTParserClang to DWARFASTParser, I kept the signature as-is. To match the rest of the function signatures in DWARFASTParser, remove the full name (lldb_private::plugin::dwarf::DWARFDIE -> DWARFDIE) in the signature of DWARFASTParser::GetTypeForDIE. (cherry picked from commit 3c6b7d0)
1 parent 3fa3e50 commit 3eaea18

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,7 @@ class DWARFASTParser {
6363
ParseChildArrayInfo(const DWARFDIE &parent_die,
6464
const lldb_private::ExecutionContext *exe_ctx = nullptr);
6565

66-
lldb_private::Type *
67-
GetTypeForDIE(const lldb_private::plugin::dwarf::DWARFDIE &die);
66+
lldb_private::Type *GetTypeForDIE(const DWARFDIE &die);
6867

6968
static lldb::AccessType GetAccessTypeFromDWARF(uint32_t dwarf_accessibility);
7069
};

0 commit comments

Comments
 (0)