summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-03-18 16:59:23 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-03-18 16:59:23 (GMT)
commitf15cce92f4a7b2138dd936c1c9a69bf6dc048e28 (patch)
treef81756cbc6572afb08f92570f92afdaf6012ff11 /Source
parent5bbae885693f74b50b1f4265d8ab32fe65288194 (diff)
downloadCMake-f15cce92f4a7b2138dd936c1c9a69bf6dc048e28.zip
CMake-f15cce92f4a7b2138dd936c1c9a69bf6dc048e28.tar.gz
CMake-f15cce92f4a7b2138dd936c1c9a69bf6dc048e28.tar.bz2
Remove warning about sign and unsigned
Diffstat (limited to 'Source')
-rw-r--r--Source/ccommand.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ccommand.cxx b/Source/ccommand.cxx
index fc67aad..ff7ae95 100644
--- a/Source/ccommand.cxx
+++ b/Source/ccommand.cxx
@@ -49,7 +49,7 @@ int main(int ac, char** av)
}
if ( args[1] == "remove" && args.size() > 2 )
{
- for ( int cc = 2; cc < args.size(); cc ++ )
+ for ( std::string::size_type cc = 2; cc < args.size(); cc ++ )
{
cmSystemTools::RemoveFile(args[cc].c_str());
}