diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2025-01-30 13:57:16 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2025-01-30 14:21:37 -0800 |
commit | 26c2da5a122532035b8bf63af89208d6d799e40e (patch) | |
tree | 180aeccd73efbbb4a5fed99e51de48aa1ddb5a0a /lldb/source/Interpreter/CommandObject.cpp | |
parent | ac7c199a63ddb7ba675e9da76dd07ffdbf07153a (diff) | |
download | llvm-26c2da5a122532035b8bf63af89208d6d799e40e.zip llvm-26c2da5a122532035b8bf63af89208d6d799e40e.tar.gz llvm-26c2da5a122532035b8bf63af89208d6d799e40e.tar.bz2 |
[lldb] Remove another unused CommandReturnObject variable (NFC)
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 6b044a2..559e2e7 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -278,7 +278,6 @@ void CommandObject::HandleCompletion(CompletionRequest &request) { } else { // Can we do anything generic with the options? Options *cur_options = GetOptions(); - CommandReturnObject result(m_interpreter.GetDebugger().GetUseColor()); OptionElementVector opt_element_vector; if (cur_options != nullptr) { |