mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 16:32:14 -06:00
Remove const char string comparison helper.
It is now unused.
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user