[Lldb-commits] [lldb] [lldb] Remove last use of AppendWarningWithFormat( (PR #190958)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 8 06:50:14 PDT 2026
================
@@ -2437,8 +2437,8 @@ class CommandObjectTargetModulesDumpLineTable
num_dumped++;
}
if (num_dumped == 0)
- result.AppendWarningWithFormat(
- "No source filenames matched '%s'.\n", arg_cstr);
+ result.AppendWarningWithFormatv(
+ "No source filenames matched '{0}'.\n", arg_cstr);
----------------
DavidSpickett wrote:
Yep, I'll add this to the first PR.
https://github.com/llvm/llvm-project/pull/190958
More information about the lldb-commits
mailing list