diff options
author | Brad King <brad.king@kitware.com> | 2008-01-18 23:40:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-18 23:40:05 (GMT) |
commit | aed67d5d93a4fd4d988d4afd09d73bb9df906c6e (patch) | |
tree | baae1f68bbbb9bc3dd0dbe10e27ae858494c1c31 /Source | |
parent | 52b96e5bd9d4b6abf2213fd6c77b8ab61480f922 (diff) | |
download | CMake-aed67d5d93a4fd4d988d4afd09d73bb9df906c6e.zip CMake-aed67d5d93a4fd4d988d4afd09d73bb9df906c6e.tar.gz CMake-aed67d5d93a4fd4d988d4afd09d73bb9df906c6e.tar.bz2 |
COMP: Fix build on Borland 5.5.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDependsFortran.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 1725c58..577ebad 100644 --- a/Source/cmDependsFortran.cxx +++ b/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; } |