[Lldb-commits] [lldb] Add a `breakpoint add` command to fix the option-madness that is `breakpoint set` (PR #156067)
Med Ismail Bennani via lldb-commits
lldb-commits at lists.llvm.org
Thu Dec 4 12:02:16 PST 2025
================
@@ -1410,7 +1410,9 @@ llvm::Error lldb_private::CreateOptionParsingError(
llvm::StringRef long_option, llvm::StringRef additional_context) {
std::string buffer;
llvm::raw_string_ostream stream(buffer);
- stream << "Invalid value ('" << option_arg << "') for -" << short_option;
+ stream << "Invalid value ('" << option_arg << "')";
----------------
medismailben wrote:
"start the first sentence with a lowercase letter"
```suggestion
stream << "invalid value ('" << option_arg << "')";
```
https://github.com/llvm/llvm-project/pull/156067
More information about the lldb-commits
mailing list