diff options
-rw-r--r-- | Source/cmTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 13a5358..9d7989b 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -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 ) ) |