diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index 635d9a58838..1607d8e11c2 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -129,6 +129,12 @@ CommandObject::SetHelpLong (const char *cstr) } void +CommandObject::SetHelpLong (std::string str) +{ + m_cmd_help_long = str; +} + +void CommandObject::SetSyntax (const char *cstr) { m_cmd_syntax = cstr; |