diff options
author | Zachary Turner <zturner@google.com> | 2016-11-16 21:34:22 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-11-16 21:34:22 +0000 |
commit | a49c2019f14e5ea5de35d6db88da1b081312ea4a (patch) | |
tree | 7026e779ac81d0968c96c50d26aabab6763c449a /lldb/source/Commands/CommandObjectHelp.h | |
parent | add6ab50849032b3136a0bb59916159c8c63315b (diff) | |
download | bcm5719-llvm-a49c2019f14e5ea5de35d6db88da1b081312ea4a.tar.gz bcm5719-llvm-a49c2019f14e5ea5de35d6db88da1b081312ea4a.zip |
Update GenerateAdditionalHelpAvenues to take StringRef.
llvm-svn: 287155
Diffstat (limited to 'lldb/source/Commands/CommandObjectHelp.h')
-rw-r--r-- | lldb/source/Commands/CommandObjectHelp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectHelp.h b/lldb/source/Commands/CommandObjectHelp.h index 5e3cf7431f9..721917a1685 100644 --- a/lldb/source/Commands/CommandObjectHelp.h +++ b/lldb/source/Commands/CommandObjectHelp.h @@ -35,8 +35,8 @@ public: StringList &matches) override; static void GenerateAdditionalHelpAvenuesMessage( - Stream *s, const char *command, const char *prefix = nullptr, - const char *subcommand = nullptr, bool include_apropos = true, + Stream *s, llvm::StringRef command, llvm::StringRef prefix, + llvm::StringRef subcommand, bool include_apropos = true, bool include_type_lookup = true); class CommandOptions : public Options { |