diff options
author | Kazu Hirata <kazu@google.com> | 2025-05-04 11:56:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-04 11:56:22 -0700 |
commit | 61714c16be4935d03f52ea7f11cee2f58a82d9fd (patch) | |
tree | 5cbd3c62af7bfdaa177948295db0a10844e17ad3 /lldb/source/Commands/CommandObjectCommands.cpp | |
parent | ac69fcf54f28128d0b72143c88a3a7a87dfd3bd4 (diff) | |
download | llvm-61714c16be4935d03f52ea7f11cee2f58a82d9fd.zip llvm-61714c16be4935d03f52ea7f11cee2f58a82d9fd.tar.gz llvm-61714c16be4935d03f52ea7f11cee2f58a82d9fd.tar.bz2 |
[lldb] Remove unused local variables (NFC) (#138457)
Diffstat (limited to 'lldb/source/Commands/CommandObjectCommands.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectCommands.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectCommands.cpp b/lldb/source/Commands/CommandObjectCommands.cpp index 9510cf4..10dc273 100644 --- a/lldb/source/Commands/CommandObjectCommands.cpp +++ b/lldb/source/Commands/CommandObjectCommands.cpp @@ -1537,9 +1537,8 @@ private: option_def.completion_type = (CommandArgumentType) completion_type; } else option_def.completion_type = eNoCompletion; - + // Usage Text: - std::string usage_text; obj_sp = opt_dict->GetValueForKey("help"); if (!obj_sp) { error = Status::FromErrorStringWithFormatv( |