Skip to content

Commit e9a8d02

Browse files
committed
[lldb][DWARFASTParserClang][NFC] Remove unused parameter to CompleteRecordType
Became unused since the recent llvm#110648
1 parent 9472c5f commit e9a8d02

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,6 @@ bool DWARFASTParserClang::ParseTemplateParameterInfos(
20662066
}
20672067

20682068
bool DWARFASTParserClang::CompleteRecordType(const DWARFDIE &die,
2069-
lldb_private::Type *type,
20702069
const CompilerType &clang_type) {
20712070
const dw_tag_t tag = die.Tag();
20722071
SymbolFileDWARF *dwarf = die.GetDWARF();
@@ -2203,7 +2202,7 @@ bool DWARFASTParserClang::CompleteTypeFromDWARF(
22032202
case DW_TAG_structure_type:
22042203
case DW_TAG_union_type:
22052204
case DW_TAG_class_type:
2206-
CompleteRecordType(die, type, clang_type);
2205+
CompleteRecordType(die, clang_type);
22072206
break;
22082207
case DW_TAG_enumeration_type:
22092208
CompleteEnumType(die, type, clang_type);

lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,6 @@ class DWARFASTParserClang : public lldb_private::plugin::dwarf::DWARFASTParser {
421421
const lldb_private::CompilerType &class_clang_type);
422422

423423
bool CompleteRecordType(const lldb_private::plugin::dwarf::DWARFDIE &die,
424-
lldb_private::Type *type,
425424
const lldb_private::CompilerType &clang_type);
426425
bool CompleteEnumType(const lldb_private::plugin::dwarf::DWARFDIE &die,
427426
lldb_private::Type *type,

0 commit comments

Comments
 (0)