File tree 2 files changed +1
-3
lines changed
lldb/source/Plugins/SymbolFile/DWARF 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -2052,7 +2052,6 @@ bool DWARFASTParserClang::ParseTemplateParameterInfos(
2052
2052
}
2053
2053
2054
2054
bool DWARFASTParserClang::CompleteRecordType (const DWARFDIE &die,
2055
- lldb_private::Type *type,
2056
2055
const CompilerType &clang_type) {
2057
2056
const dw_tag_t tag = die.Tag ();
2058
2057
SymbolFileDWARF *dwarf = die.GetDWARF ();
@@ -2189,7 +2188,7 @@ bool DWARFASTParserClang::CompleteTypeFromDWARF(
2189
2188
case DW_TAG_structure_type:
2190
2189
case DW_TAG_union_type:
2191
2190
case DW_TAG_class_type:
2192
- CompleteRecordType (die, type, clang_type);
2191
+ CompleteRecordType (die, clang_type);
2193
2192
break ;
2194
2193
case DW_TAG_enumeration_type:
2195
2194
CompleteEnumType (die, type, clang_type);
Original file line number Diff line number Diff line change @@ -421,7 +421,6 @@ class DWARFASTParserClang : public lldb_private::plugin::dwarf::DWARFASTParser {
421
421
const lldb_private::CompilerType &class_clang_type);
422
422
423
423
bool CompleteRecordType (const lldb_private::plugin::dwarf::DWARFDIE &die,
424
- lldb_private::Type *type,
425
424
const lldb_private::CompilerType &clang_type);
426
425
bool CompleteEnumType (const lldb_private::plugin::dwarf::DWARFDIE &die,
427
426
lldb_private::Type *type,
You can’t perform that action at this time.
0 commit comments