diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2025-01-30 13:36:01 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2025-01-30 13:36:25 -0800 |
commit | c1e9b908d9c205970f025c188c6fbe6fb93be98d (patch) | |
tree | 510d1ca37dcd536c8d5f741560192d8d5aaa6a03 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | fa4af0353b2071d8d009c9d14a5025a3dfc92fb3 (diff) | |
download | llvm-c1e9b908d9c205970f025c188c6fbe6fb93be98d.zip llvm-c1e9b908d9c205970f025c188c6fbe6fb93be98d.tar.gz llvm-c1e9b908d9c205970f025c188c6fbe6fb93be98d.tar.bz2 |
[lldb] Remove unused CommandReturnObject stack variable (NFC)
Per the title, the variable is unused.
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index 04226af..4869b81 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -284,8 +284,6 @@ bool CommandInterpreter::GetRequireCommandOverwrite() const { void CommandInterpreter::Initialize() { LLDB_SCOPED_TIMER(); - CommandReturnObject result(m_debugger.GetUseColor()); - LoadCommandDictionary(); // An alias arguments vector to reuse - reset it before use... |