diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 5618b6ccc3f..9502ad9619e 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -53,7 +53,9 @@ CommandObject::CommandObject m_cmd_syntax (), m_is_alias (false), m_flags (flags), - m_arguments() + m_arguments(), + m_command_override_callback (NULL), + m_command_override_baton (NULL) { if (help && help[0]) m_cmd_help_short = help; @@ -163,17 +165,6 @@ CommandObject::GetFlags() const } bool -CommandObject::ExecuteCommandString -( - const char *command_line, - CommandReturnObject &result -) -{ - Args command_args(command_line); - return ExecuteWithOptions (command_args, result); -} - -bool CommandObject::ParseOptions ( Args& args, |