[nfc] [lldb] Fix harmless slicing of DWARFDIE

Differential Revision: https://reviews.llvm.org/D89875
This commit is contained in:
Jan Kratochvil 2020-10-21 15:49:53 +02:00
parent 537f0fbe82
commit 7bf066a20f
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ public:
void SetBaseAddress(dw_addr_t base_addr);
DWARFBaseDIE GetUnitDIEOnly() { return DWARFDIE(this, GetUnitDIEPtrOnly()); }
DWARFBaseDIE GetUnitDIEOnly() { return {this, GetUnitDIEPtrOnly()}; }
DWARFDIE DIE() { return DWARFDIE(this, DIEPtr()); }