From 49ced45dc00ee064549c94ebad7e6296451d54c4 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Sat, 1 May 2004 09:57:35 -0400 Subject: ERR: Remove warning about shadow variables --- Source/cmCTest.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 2b5a87e..5cac61c 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -2961,10 +2961,10 @@ int cmCTest::ProcessTests() { cmsys::Directory d; d.Load(notes_dir.c_str()); - unsigned long cc; - for ( cc = 0; cc < d.GetNumberOfFiles(); cc ++ ) + unsigned long kk; + for ( kk = 0; kk < d.GetNumberOfFiles(); kk ++ ) { - const char* file = d.GetFile(cc); + const char* file = d.GetFile(kk); std::string fullname = notes_dir + "/" + file; if ( cmSystemTools::FileExists(fullname.c_str()) && !cmSystemTools::FileIsDirectory(fullname.c_str()) ) -- cgit v0.12