[cmake-commits] king committed cmDependsFortran.cxx 1.45 1.46

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Jan 18 18:40:07 EST 2008


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv16920

Modified Files:
	cmDependsFortran.cxx 
Log Message:
COMP: Fix build on Borland 5.5.


Index: cmDependsFortran.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDependsFortran.cxx,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- cmDependsFortran.cxx	18 Jan 2008 00:58:01 -0000	1.45
+++ cmDependsFortran.cxx	18 Jan 2008 23:40:05 -0000	1.46
@@ -453,7 +453,8 @@
       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;
       }



More information about the Cmake-commits mailing list