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.
1 parent afb115a commit 8cbe329Copy full SHA for 8cbe329
lldb/source/Commands/CommandObjectThread.cpp
@@ -492,8 +492,9 @@ class CommandObjectThreadStepWithTypeAndScope : public CommandObjectParsed {
492
llvm::Error err =
493
sc.GetAddressRangeFromHereToEndLine(m_options.m_end_line, range);
494
if (err) {
495
- result.AppendErrorWithFormat("invalid end-line option: %s.",
496
- llvm::toString(std::move(err)).c_str());
+ result.AppendErrorWithFormat(
+ "invalid end-line option: %s.",
497
+ llvm::toString(std::move(err)).c_str());
498
return;
499
}
500
} else if (m_options.m_end_line_is_block_end) {
0 commit comments