diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2012-08-09 22:06:10 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2012-08-09 22:06:10 +0000 |
| commit | 4ac1d9e16006b8582840eb03899ebd9b2127e221 (patch) | |
| tree | 9ac1fe735e07d4c9d1b2b2545bc85cc55ce9bbe4 /lldb/source/Interpreter/CommandInterpreter.cpp | |
| parent | 9cb988f3aa4775875301031ef14c9a0d6db2b1a8 (diff) | |
| download | bcm5719-llvm-4ac1d9e16006b8582840eb03899ebd9b2127e221.tar.gz bcm5719-llvm-4ac1d9e16006b8582840eb03899ebd9b2127e221.zip | |
Added back member initialization for m_batch_command_mode, which was most likely removed accidentally a while back.
The consequence occurred recently probably due to our swicth to build with c++11.
This fixed 3 test failures.
llvm-svn: 161625
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
| -rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index a7c63e7ea64..979e21a5492 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -80,6 +80,7 @@ CommandInterpreter::CommandInterpreter m_script_interpreter_ap (), m_comment_char ('#'), m_repeat_char ('!'), + m_batch_command_mode (false), m_truncation_warning(eNoTruncation), m_command_source_depth (0) { |

