diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-03-18 16:59:23 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-03-18 16:59:23 (GMT) |
commit | f15cce92f4a7b2138dd936c1c9a69bf6dc048e28 (patch) | |
tree | f81756cbc6572afb08f92570f92afdaf6012ff11 /Source | |
parent | 5bbae885693f74b50b1f4265d8ab32fe65288194 (diff) | |
download | CMake-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.cxx | 2 |
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()); } |