diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-09-17 13:07:55 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-09-17 13:10:25 (GMT) |
commit | 1927e4bacb8e3183488c0e71a18b73aa62e5f53a (patch) | |
tree | fe4ce7f47ac460727053ce218706aa20ce8b22fb | |
parent | 56af8866038de20eb837d882aa9879c17e146ef7 (diff) | |
download | CMake-1927e4bacb8e3183488c0e71a18b73aa62e5f53a.zip CMake-1927e4bacb8e3183488c0e71a18b73aa62e5f53a.tar.gz CMake-1927e4bacb8e3183488c0e71a18b73aa62e5f53a.tar.bz2 |
Remove const char string comparison helper.
It is now unused.
-rw-r--r-- | Source/cmStandardIncludes.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h index 3731502..8baf7b3 100644 --- a/Source/cmStandardIncludes.h +++ b/Source/cmStandardIncludes.h @@ -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; }; |