diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-05-01 12:03:56 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-05-01 12:07:21 -0700 |
commit | 232ef38713b984cc84d2a009e83c1b044f0c06d3 (patch) | |
tree | e0af356ef9fc98c729669073267d192b370d3d4e /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 1165a35a7312ccd723bbe3e5fe95cd3a3109ec66 (diff) | |
download | llvm-232ef38713b984cc84d2a009e83c1b044f0c06d3.zip llvm-232ef38713b984cc84d2a009e83c1b044f0c06d3.tar.gz llvm-232ef38713b984cc84d2a009e83c1b044f0c06d3.tar.bz2 |
[lldb/CommandInterpreter] Fix typo in CommandInterpreterResult::IsResult
A missing `=` turned a comparison into an assignment.
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index d765cb7..3f727e8 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -116,7 +116,7 @@ CommandInterpreter::CommandInterpreter(Debugger &debugger, m_skip_lldbinit_files(false), m_skip_app_init_files(false), m_command_io_handler_sp(), m_comment_char('#'), m_batch_command_mode(false), m_truncation_warning(eNoTruncation), - m_command_source_depth(0) { + m_command_source_depth(0), m_result() { SetEventName(eBroadcastBitThreadShouldExit, "thread-should-exit"); SetEventName(eBroadcastBitResetPrompt, "reset-prompt"); SetEventName(eBroadcastBitQuitCommandReceived, "quit"); |