We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
AppendErrorWithFormat
AppendErrorWithFormatv
1 parent 8a34b94 commit 1d8dc8dCopy full SHA for 1d8dc8d
lldb/source/Commands/CommandObjectThread.cpp
@@ -492,11 +492,8 @@ class CommandObjectThreadStepWithTypeAndScope : public CommandObjectParsed {
492
llvm::Error err =
493
sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range);
494
if (err) {
495
- result.AppendErrorWithFormatv(
496
- "invalid end-line option: {0}.",
497
- llvm::toString(std::move(err)));
498
- "invalid end-line option: %s.",
499
- llvm::toString(std::move(err)).c_str());
+ result.AppendErrorWithFormatv("invalid end-line option: {0}.",
+ llvm::toString(std::move(err)));
500
return;
501
}
502
} else if (m_options.m_end_line_is_block_end) {
0 commit comments