diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-10-25 16:26:24 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-10-25 16:26:24 (GMT) |
commit | a3798b2cbf88fdbda1cb010388bc98f394a18945 (patch) | |
tree | 69a8dba7a7cf078a551387fe4a033e217a4f47c8 /Source/cmLocalKdevelopGenerator.cxx | |
parent | e26c14e5d3bac5541d3e4662845030b7aaa3c161 (diff) | |
download | CMake-a3798b2cbf88fdbda1cb010388bc98f394a18945.zip CMake-a3798b2cbf88fdbda1cb010388bc98f394a18945.tar.gz CMake-a3798b2cbf88fdbda1cb010388bc98f394a18945.tar.bz2 |
COMP: remove warnings
Diffstat (limited to 'Source/cmLocalKdevelopGenerator.cxx')
-rw-r--r-- | Source/cmLocalKdevelopGenerator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmLocalKdevelopGenerator.cxx b/Source/cmLocalKdevelopGenerator.cxx index 023c90c..b63660b 100644 --- a/Source/cmLocalKdevelopGenerator.cxx +++ b/Source/cmLocalKdevelopGenerator.cxx @@ -327,10 +327,10 @@ bool cmLocalKdevelopGenerator::CreateFilelistFile(const std::string& outputDir, for (cmTargets::const_iterator ti = targets.begin(); ti != targets.end(); ti++) { const std::vector<cmSourceFile*>& sources=ti->second.GetSourceFiles(); - for (std::vector<cmSourceFile*>::const_iterator it=sources.begin(); - it!=sources.end(); it++) + for (std::vector<cmSourceFile*>::const_iterator si=sources.begin(); + si!=sources.end(); si++) { - files.insert((*it)->GetFullPath()); + files.insert((*si)->GetFullPath()); } for (std::vector<std::string>::const_iterator lt=listFiles.begin(); lt!=listFiles.end(); lt++) |