소스 검색

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());
     }
 };