mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
Constify cmStrCmp.
This commit is contained in:
parent
4cb7d792af
commit
218ad35f96
@ -423,19 +423,19 @@ struct cmStrCmp {
|
||||
cmStrCmp(const char *test) : m_test(test) {}
|
||||
cmStrCmp(std::string &test) : m_test(test.c_str()) {}
|
||||
|
||||
bool operator()(const char * input)
|
||||
bool operator()(const char * input) const
|
||||
{
|
||||
return strcmp(input, m_test) == 0;
|
||||
}
|
||||
|
||||
// For use with binary_search
|
||||
bool operator()(const char *str1, const char *str2)
|
||||
bool operator()(const char *str1, const char *str2) const
|
||||
{
|
||||
return strcmp(str1, str2) < 0;
|
||||
}
|
||||
|
||||
private:
|
||||
const char *m_test;
|
||||
const char * const m_test;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user