COMP: Fix build on Borland 5.5.
This commit is contained in:
parent
52b96e5bd9
commit
aed67d5d93
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue