diff options
author | Enrico Granata <egranata@apple.com> | 2016-03-08 03:48:41 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2016-03-08 03:48:41 +0000 |
commit | 4a795920e3e3fbef8c55956210b698f49d90f091 (patch) | |
tree | 462008084d51f3c27f57b7b836f7d3083cbe7b46 /lldb/source/Interpreter/CommandInterpreter.cpp | |
parent | 5df5402f94376b93d215791330750748053d78e7 (diff) | |
download | bcm5719-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/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index bf8ac43b105..bfbfabbd469 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -1200,22 +1200,6 @@ CommandInterpreter::GetAliasHelp (const char *alias_name, const char *command_na help_string.Printf ("'"); } -template <typename ValueType> -size_t -CommandInterpreter::FindLongestCommandWord (std::map<std::string,ValueType> &dict) -{ - auto end = dict.end(); - size_t max_len = 0; - - for (auto pos = dict.begin(); pos != end; ++pos) - { - size_t len = pos->first.size(); - if (max_len < len) - max_len = len; - } - return max_len; -} - void CommandInterpreter::GetHelp (CommandReturnObject &result, uint32_t cmd_types) |