File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed
lldb/source/Plugins/SymbolFile/DWARF Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -2066,7 +2066,6 @@ bool DWARFASTParserClang::ParseTemplateParameterInfos(
2066
2066
}
2067
2067
2068
2068
bool DWARFASTParserClang::CompleteRecordType (const DWARFDIE &die,
2069
- lldb_private::Type *type,
2070
2069
const CompilerType &clang_type) {
2071
2070
const dw_tag_t tag = die.Tag ();
2072
2071
SymbolFileDWARF *dwarf = die.GetDWARF ();
@@ -2203,7 +2202,7 @@ bool DWARFASTParserClang::CompleteTypeFromDWARF(
2203
2202
case DW_TAG_structure_type:
2204
2203
case DW_TAG_union_type:
2205
2204
case DW_TAG_class_type:
2206
- CompleteRecordType (die, type, clang_type);
2205
+ CompleteRecordType (die, clang_type);
2207
2206
break ;
2208
2207
case DW_TAG_enumeration_type:
2209
2208
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