Skip to content

Commit 1bf6b0e

Browse files
[lldb][progress] Fix format string in title (#8314)
The title string for the progress report for loading Swift module dependencies had an unused formatter in its title string. Since the filename that was supposed to go in this formatter will now be reported as a detail, this commit removes the formatter from the title string.
1 parent 2eabcea commit 1bf6b0e

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
@@ -4273,7 +4273,7 @@ void SwiftASTContext::ValidateSectionModules(
42734273

42744274
Status error;
42754275

4276-
Progress progress("Loading Swift module '{0}' dependencies",
4276+
Progress progress("Loading Swift module dependencies",
42774277
module.GetFileSpec().GetFilename().AsCString(),
42784278
module_names.size());
42794279
size_t completion = 0;

0 commit comments

Comments
 (0)