Index: lldb/trunk/include/lldb/Utility/StringLexer.h =================================================================== --- lldb/trunk/include/lldb/Utility/StringLexer.h +++ lldb/trunk/include/lldb/Utility/StringLexer.h @@ -41,8 +41,6 @@ bool HasAtLeast(Size s); - bool HasAny(Character c); - std::string GetUnlexed(); // This will assert if there are less than s characters preceding the cursor. Index: lldb/trunk/source/Utility/StringLexer.cpp =================================================================== --- lldb/trunk/source/Utility/StringLexer.cpp +++ lldb/trunk/source/Utility/StringLexer.cpp @@ -73,10 +73,6 @@ m_position -= s; } -bool StringLexer::HasAny(Character c) { - return m_data.find(c, m_position) != std::string::npos; -} - std::string StringLexer::GetUnlexed() { return std::string(m_data, m_position); }