[Lldb-commits] [lldb] r214941 - Probably should initialize that new ivar while I'm at it...
Jim Ingham
jingham at apple.com
Tue Aug 5 17:24:38 PDT 2014
Author: jingham
Date: Tue Aug 5 19:24:38 2014
New Revision: 214941
URL: http://llvm.org/viewvc/llvm-project?rev=214941&view=rev
Log:
Probably should initialize that new ivar while I'm at it...
Modified:
lldb/trunk/source/Interpreter/CommandObject.cpp
Modified: lldb/trunk/source/Interpreter/CommandObject.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Interpreter/CommandObject.cpp?rev=214941&r1=214940&r2=214941&view=diff
==============================================================================
--- lldb/trunk/source/Interpreter/CommandObject.cpp (original)
+++ lldb/trunk/source/Interpreter/CommandObject.cpp Tue Aug 5 19:24:38 2014
@@ -56,6 +56,7 @@ CommandObject::CommandObject
m_is_alias (false),
m_flags (flags),
m_arguments(),
+ m_deprecated_command_override_callback (nullptr),
m_command_override_callback (nullptr),
m_command_override_baton (nullptr)
{
More information about the lldb-commits
mailing list