summaryrefslogtreecommitdiffstats
path: root/Source/cmStandardIncludes.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-09-17 13:07:55 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-09-17 13:10:25 (GMT)
commit1927e4bacb8e3183488c0e71a18b73aa62e5f53a (patch)
treefe4ce7f47ac460727053ce218706aa20ce8b22fb /Source/cmStandardIncludes.h
parent56af8866038de20eb837d882aa9879c17e146ef7 (diff)
downloadCMake-1927e4bacb8e3183488c0e71a18b73aa62e5f53a.zip
CMake-1927e4bacb8e3183488c0e71a18b73aa62e5f53a.tar.gz
CMake-1927e4bacb8e3183488c0e71a18b73aa62e5f53a.tar.bz2
Remove const char string comparison helper.
It is now unused.
Diffstat (limited to 'Source/cmStandardIncludes.h')
-rw-r--r--Source/cmStandardIncludes.h6
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;
};