From a3798b2cbf88fdbda1cb010388bc98f394a18945 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Mon, 25 Oct 2004 12:26:24 -0400 Subject: [PATCH] COMP: remove warnings --- Source/cmLocalKdevelopGenerator.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmLocalKdevelopGenerator.cxx b/Source/cmLocalKdevelopGenerator.cxx index 023c90c27..b63660bd9 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& sources=ti->second.GetSourceFiles(); - for (std::vector::const_iterator it=sources.begin(); - it!=sources.end(); it++) + for (std::vector::const_iterator si=sources.begin(); + si!=sources.end(); si++) { - files.insert((*it)->GetFullPath()); + files.insert((*si)->GetFullPath()); } for (std::vector::const_iterator lt=listFiles.begin(); lt!=listFiles.end(); lt++)