Explorar o código

removed stricmp

Ken Martin %!s(int64=24) %!d(string=hai) anos
pai
achega
24ec7f5c3c
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      Source/cmMakefile.cxx

+ 1 - 1
Source/cmMakefile.cxx

@@ -418,7 +418,7 @@ struct FindSrcByName : std::binary_function<cmSourceFile, cmSourceFile, bool>
   public:
     bool operator () (const cmSourceFile &f, const cmSourceFile &test) const
     {
-      return !stricmp(f.GetSourceName().c_str(),test.GetSourceName().c_str());
+      return !strcmp(f.GetSourceName().c_str(),test.GetSourceName().c_str());
     }
 };