summaryrefslogtreecommitdiffstats
path: root/Source/cmCreateTestSourceList.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-17 14:51:23 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-10-17 14:51:23 (GMT)
commitc3007233ec8fc164a1e5de539bebdeb11cae3d8c (patch)
tree7e6222c18c3848e5eaf322e3c5f8d9244768c577 /Source/cmCreateTestSourceList.cxx
parenta465ee3c6bcca6da501cc1499f17ca192b908927 (diff)
downloadCMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.zip
CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.tar.gz
CMake-c3007233ec8fc164a1e5de539bebdeb11cae3d8c.tar.bz2
Rename variables to remove warnings
Diffstat (limited to 'Source/cmCreateTestSourceList.cxx')
-rw-r--r--Source/cmCreateTestSourceList.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmCreateTestSourceList.cxx b/Source/cmCreateTestSourceList.cxx
index 8a20151..8154ad7 100644
--- a/Source/cmCreateTestSourceList.cxx
+++ b/Source/cmCreateTestSourceList.cxx
@@ -289,13 +289,13 @@ bool cmCreateTestSourceList::InitialPass(std::vector<std::string> const& argsIn)
for(i = testsBegin; i != tests.end(); ++i)
{
- cmSourceFile cfile;
- cfile.SetProperty("ABSTRACT","0");
- cfile.SetName(i->c_str(),
+ cmSourceFile icfile;
+ icfile.SetProperty("ABSTRACT","0");
+ icfile.SetName(i->c_str(),
m_Makefile->GetCurrentDirectory(),
m_Makefile->GetSourceExtensions(),
m_Makefile->GetHeaderExtensions());
- m_Makefile->AddSource(cfile);
+ m_Makefile->AddSource(icfile);
sourceListValue += ";";
sourceListValue += *i;
}