summaryrefslogtreecommitdiffstats
path: root/lldb/source/Commands/CommandObjectMultiword.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2016-03-08 03:48:41 +0000
committerEnrico Granata <egranata@apple.com>2016-03-08 03:48:41 +0000
commit4a795920e3e3fbef8c55956210b698f49d90f091 (patch)
tree462008084d51f3c27f57b7b836f7d3083cbe7b46 /lldb/source/Commands/CommandObjectMultiword.cpp
parent5df5402f94376b93d215791330750748053d78e7 (diff)
downloadbcm5719-llvm-4a795920e3e3fbef8c55956210b698f49d90f091.tar.gz
bcm5719-llvm-4a795920e3e3fbef8c55956210b698f49d90f091.zip
Attempt to fix the Ubuntu buildbot by making FindLongestCommandWord a free template function in lldb_private
llvm-svn: 262905
Diffstat (limited to 'lldb/source/Commands/CommandObjectMultiword.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectMultiword.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectMultiword.cpp b/lldb/source/Commands/CommandObjectMultiword.cpp
index 18e162dcec4..887ce24765f 100644
--- a/lldb/source/Commands/CommandObjectMultiword.cpp
+++ b/lldb/source/Commands/CommandObjectMultiword.cpp
@@ -181,7 +181,7 @@ CommandObjectMultiword::GenerateHelpText (Stream &output_stream)
output_stream.PutCString ("The following subcommands are supported:\n\n");
CommandMap::iterator pos;
- uint32_t max_len = m_interpreter.FindLongestCommandWord (m_subcommand_dict);
+ uint32_t max_len = FindLongestCommandWord (m_subcommand_dict);
if (max_len)
max_len += 4; // Indent the output by 4 spaces.
OpenPOWER on IntegriCloud