Remove const char string comparison helper.

It is now unused.
This commit is contained in:
Stephen Kelly 2014-09-17 15:07:55 +02:00
parent 56af886603
commit 1927e4bacb
1 changed files with 0 additions and 6 deletions

View File

@ -462,12 +462,6 @@ struct cmStrCmp {
return strcmp(input, m_test.c_str()) == 0;
}
// For use with binary_search
bool operator()(const char *str1, const char *str2) const
{
return strcmp(str1, str2) < 0;
}
private:
const std::string m_test;
};