[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:42 PST 2024
    
    
  
================
@@ -1788,12 +1792,13 @@ class CommandObjectCommandsScriptDelete : public CommandObjectParsed {
       return;
     }
     const char *leaf_cmd = command[num_args - 1].c_str();
-    llvm::Error llvm_error = container->RemoveUserSubcommand(leaf_cmd,
-                                            /* multiword not okay */ false);
+    llvm::Error llvm_error =
+        container->RemoveUserSubcommand(leaf_cmd,
+                                        /* multiword not okay */ false);
     if (llvm_error) {
-      result.AppendErrorWithFormat("could not delete command '%s': %s",
-                                   leaf_cmd, 
-                                   llvm::toString(std::move(llvm_error)).c_str());
+      result.AppendErrorWithFormat(
+          "could not delete command '%s': %s", leaf_cmd,
+          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