Skip to content

Commit df177d6

Browse files
committed
[lldb] Convert ConstString to std::string when appending
(cherry picked from commit 7df11ff)
1 parent bc8464f commit df177d6

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
@@ -9221,7 +9221,7 @@ bool SwiftASTContext::GetCompileUnitImportsImpl(
92219221
}
92229222

92239223
std::string category = "Importing Swift module dependencies for ";
9224-
category += compile_unit->GetPrimaryFile().GetFilename();
9224+
category += compile_unit->GetPrimaryFile().GetFilename().GetString();
92259225
Progress progress(category, "", cu_imports.size());
92269226
size_t completion = 0;
92279227
for (const SourceModule &module : cu_imports) {

0 commit comments

Comments
 (0)