From f901b9c3403b62b0a5f8e7e07e821b88f9d6e15b Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Wed, 28 Nov 2001 07:14:25 -0500 Subject: [PATCH] fix warning --- Source/cmMarkAsAdvancedCommand.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMarkAsAdvancedCommand.cxx b/Source/cmMarkAsAdvancedCommand.cxx index e88d1e2b1..ed7d7a514 100644 --- a/Source/cmMarkAsAdvancedCommand.cxx +++ b/Source/cmMarkAsAdvancedCommand.cxx @@ -48,7 +48,7 @@ bool cmMarkAsAdvancedCommand::InitialPass(std::vector const& args) this->SetError("called with incorrect number of arguments"); return false; } - for(int i =0; i < args.size(); ++i) + for(unsigned int i =0; i < args.size(); ++i) { std::string variable = args[i]; variable += "-ADVANCED";