Skip to content

Commit 7df11ff

Browse files
committed
[lldb] Convert ConstString to std::string when appending
1 parent 180103f commit 7df11ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8947,7 +8947,7 @@ bool SwiftASTContext::GetCompileUnitImportsImpl(
89478947
return true;
89488948

89498949
std::string category = "Importing Swift module dependencies for ";
8950-
category += compile_unit->GetPrimaryFile().GetFilename();
8950+
category += compile_unit->GetPrimaryFile().GetFilename().GetString();
89518951
Progress progress(category, "", cu_imports.size());
89528952
size_t completion = 0;
89538953
for (const SourceModule &module : cu_imports) {

0 commit comments

Comments
 (0)