Skip to content

Commit e3476f6

Browse files
authored
[lldb][gardening] Remove full name of "DWARFDIE" type in GetTypeForDIE (#70062)
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.
1 parent d2ce3e9 commit e3476f6

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
@@ -64,8 +64,7 @@ class DWARFASTParser {
6464
ParseChildArrayInfo(const DWARFDIE &parent_die,
6565
const ExecutionContext *exe_ctx = nullptr);
6666

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

7069
static lldb::AccessType GetAccessTypeFromDWARF(uint32_t dwarf_accessibility);
7170

0 commit comments

Comments
 (0)