浏览代码

removed stricmp

Ken Martin 24 年之前
父节点
当前提交
24ec7f5c3c
共有 1 个文件被更改,包括 1 次插入1 次删除
  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());
     }
 };