Skip to content

Commit

Permalink
[lldb][gardening] Remove full name of "DWARFDIE" type in GetTypeForDIE (
Browse files Browse the repository at this point in the history
llvm#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.
  • Loading branch information
augusto2112 authored Oct 24, 2023
1 parent d2ce3e9 commit e3476f6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,7 @@ class DWARFASTParser {
ParseChildArrayInfo(const DWARFDIE &parent_die,
const ExecutionContext *exe_ctx = nullptr);

lldb_private::Type *
GetTypeForDIE(const lldb_private::plugin::dwarf::DWARFDIE &die);
lldb_private::Type *GetTypeForDIE(const DWARFDIE &die);

static lldb::AccessType GetAccessTypeFromDWARF(uint32_t dwarf_accessibility);

Expand Down

0 comments on commit e3476f6

Please sign in to comment.