mirror of
https://github.com/reactos/CMake.git
synced 2024-11-25 04:29:52 +00:00
Remove const char string comparison helper.
It is now unused.
This commit is contained in:
parent
56af886603
commit
1927e4bacb
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user