[Lldb-commits] [lldb] Add commands frequency to statistics dump (PR #80375)
Greg Clayton via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 1 20:50:45 PST 2024
================
@@ -1644,8 +1647,9 @@ class CommandObjectCommandsScriptAdd : public CommandObjectParsed,
llvm::Error llvm_error =
m_container->LoadUserSubcommand(m_cmd_name, new_cmd_sp, m_overwrite);
if (llvm_error)
- result.AppendErrorWithFormat("cannot add command: %s",
- llvm::toString(std::move(llvm_error)).c_str());
+ result.AppendErrorWithFormat(
+ "cannot add command: %s",
+ llvm::toString(std::move(llvm_error)).c_str());
----------------
clayborg wrote:
revert non related whitespace change
https://github.com/llvm/llvm-project/pull/80375
More information about the lldb-commits
mailing list