FIX: Const reference to a set needs a const_iterator. (.NET build error)

This commit is contained in:
Jim Miller 2002-05-10 14:06:34 -04:00
parent 0e6b39e52f
commit de44f1faac
1 changed files with 1 additions and 1 deletions

View File

@ -247,7 +247,7 @@ cmTarget::AnalyzeLibDependencies( const cmMakefile& mf )
if( dep_map.find(lib->first) != dep_map.end() ) // does it have dependencies?
{
const std::set<cmStdString>& dep_on = dep_map.find( lib->first )->second;
std::set<cmStdString>::iterator i;
std::set<cmStdString>::const_iterator i;
for( i = dep_on.begin(); i != dep_on.end(); ++i )
{
if( satisfied[lib->first].end() == satisfied[lib->first].find( *i ) )