From f15cce92f4a7b2138dd936c1c9a69bf6dc048e28 Mon Sep 17 00:00:00 2001 From: Andy Cedilnik Date: Mon, 18 Mar 2002 11:59:23 -0500 Subject: Remove warning about sign and unsigned --- Source/ccommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } -- cgit v0.12