From 218ad35f96e89dc1c311ff52445c8ec03b828d5b Mon Sep 17 00:00:00 2001
From: Stephen Kelly <steveire@gmail.com>
Date: Sun, 15 Dec 2013 00:00:57 +0100
Subject: Constify cmStrCmp.

---
 Source/cmStandardIncludes.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index 7369fe6..eb6e52f 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -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
-- 
cgit v0.12