소스 검색

COMP: Fix build on Borland 5.5.

Brad King 18 년 전
부모
커밋
aed67d5d93
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      Source/cmDependsFortran.cxx

+ 2 - 1
Source/cmDependsFortran.cxx

@@ -453,7 +453,8 @@ cmDependsFortran
       i != info.Requires.end(); ++i)
     {
     // Require only modules not provided in the same source.
-    if(info.Provides.find(*i) != info.Provides.end())
+    if(std::set<cmStdString>::const_iterator(info.Provides.find(*i)) !=
+       info.Provides.end())
       {
       continue;
       }