[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.
This commit is contained in:
Augusto Noronha 2023-10-24 09:49:08 -07:00 committed by GitHub
parent d2ce3e9621
commit e3476f68af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,8 +64,7 @@ public:
ParseChildArrayInfo(const DWARFDIE &parent_die, ParseChildArrayInfo(const DWARFDIE &parent_die,
const ExecutionContext *exe_ctx = nullptr); const ExecutionContext *exe_ctx = nullptr);
lldb_private::Type * lldb_private::Type *GetTypeForDIE(const DWARFDIE &die);
GetTypeForDIE(const lldb_private::plugin::dwarf::DWARFDIE &die);
static lldb::AccessType GetAccessTypeFromDWARF(uint32_t dwarf_accessibility); static lldb::AccessType GetAccessTypeFromDWARF(uint32_t dwarf_accessibility);