Skip to content

Commit d1782cc

Browse files
committed
[lldb] Add empty implementation for DWARFASTParserSwift::FindDefinitionTypeForDIE
1 parent 0e0a7fd commit d1782cc

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -297,3 +297,8 @@ lldb_private::CompilerDeclContext
297297
DWARFASTParserSwift::GetDeclContextContainingUIDFromDWARF(const DWARFDIE &die) {
298298
return CompilerDeclContext();
299299
}
300+
301+
lldb_private::Type *
302+
DWARFASTParserSwift::FindDefinitionTypeForDIE(const DWARFDIE &die) {
303+
return nullptr;
304+
}

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ class DWARFASTParserSwift : public lldb_private::plugin::dwarf::DWARFASTParser,
9393
std::unique_ptr<swift::reflection::MultiPayloadEnumDescriptorBase>
9494
getMultiPayloadEnumDescriptor(const swift::reflection::TypeRef *TR) override;
9595

96+
lldb_private::Type *FindDefinitionTypeForDIE(const DWARFDIE &die) override;
97+
9698
private:
9799
/// Returns the canonical demangle tree of a die's type.
98100
NodePointer GetCanonicalDemangleTree(DWARFDIE &die);

0 commit comments

Comments
 (0)