Skip to content

Commit 420dfc9

Browse files
committed
[lldb] Update return value for GetDIEClassTemplateParams
Now returns a `std::string` rather than a `ConstString`
1 parent e384f23 commit 420dfc9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,11 +70,11 @@ class DWARFASTParserSwift : public lldb_private::plugin::dwarf::DWARFASTParser,
7070
lldb_private::CompilerDeclContext decl_context) override {}
7171

7272
// FIXME: What should this do?
73-
lldb_private::ConstString
73+
std::string
7474
GetDIEClassTemplateParams(const DWARFDIE &die) override {
7575
assert(false && "DWARFASTParserSwift::GetDIEClassTemplateParams has not "
7676
"yet been implemented");
77-
return lldb_private::ConstString();
77+
return {};
7878
}
7979

8080
static bool classof(const DWARFASTParser *Parser) {

0 commit comments

Comments
 (0)