[Lldb-commits] [lldb] [lldb][NFC] Replace createStringError/llvm::formatv pairs with createStringErrorV (PR #176428)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Jan 16 08:55:17 PST 2026


================
@@ -213,8 +213,8 @@ lldb::ProcessSP PlatformWasm::DebugProcess(ProcessLaunchInfo &launch_info,
     // failing to connect.
     if (*exit_code)
       error = Status::FromError(llvm::joinErrors(
-          llvm::createStringError(llvm::formatv(
-              "WebAssembly runtime exited with exit code {0}", **exit_code)),
+          llvm::createStringError(
----------------
Michael137 wrote:

```suggestion
          llvm::createStringErrorV(
```

https://github.com/llvm/llvm-project/pull/176428


More information about the lldb-commits mailing list