diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2016-01-04 01:16:32 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2016-01-04 01:16:32 +0000 |
| commit | 9f2f44ceeb195c67fbbf0953f03c530f6f1e59d4 (patch) | |
| tree | 1a3cc0a2c3d432ddf9ffc14f06bd43e8097fc93c /contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp | |
| parent | 0a97e59728ecf251d065745cb716ffe32b24aa28 (diff) | |
| parent | 3bd2e91faeb9eeec1aae82c64a3253afff551cfd (diff) | |
Notes
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp')
| -rw-r--r-- | contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp b/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp index 2f0e2a78a0cc..206f3b6fb7df 100644 --- a/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp +++ b/contrib/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp @@ -382,6 +382,14 @@ CommandObjectProxy::IsMultiwordObject () return false; } +void +CommandObjectProxy::GenerateHelpText (Stream &result) +{ + CommandObject *proxy_command = GetProxyCommandObject(); + if (proxy_command) + return proxy_command->GenerateHelpText(result); +} + lldb::CommandObjectSP CommandObjectProxy::GetSubcommandSP (const char *sub_cmd, StringList *matches) { |
