[Lldb-commits] [lldb] r161625 - /lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Johnny Chen johnny.chen at apple.com
Thu Aug 9 15:06:10 PDT 2012


Author: johnny
Date: Thu Aug  9 17:06:10 2012
New Revision: 161625

URL: http://llvm.org/viewvc/llvm-project?rev=161625&view=rev
Log:
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.

Modified:
    lldb/trunk/source/Interpreter/CommandInterpreter.cpp

Modified: lldb/trunk/source/Interpreter/CommandInterpreter.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandInterpreter.cpp?rev=161625&r1=161624&r2=161625&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandInterpreter.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandInterpreter.cpp Thu Aug  9 17:06:10 2012
@@ -80,6 +80,7 @@
     m_script_interpreter_ap (),
     m_comment_char ('#'),
     m_repeat_char ('!'),
+    m_batch_command_mode (false),
     m_truncation_warning(eNoTruncation),
     m_command_source_depth (0)
 {





More information about the lldb-commits mailing list