diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 12:14:25 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-28 12:14:25 (GMT) |
commit | f901b9c3403b62b0a5f8e7e07e821b88f9d6e15b (patch) | |
tree | 3f10d68d3237f0aafdf67be4c9177478638ab864 /Source/cmMarkAsAdvancedCommand.cxx | |
parent | 10097d76851c69912fcb4e9e1e8b50aa077ec28e (diff) | |
download | CMake-f901b9c3403b62b0a5f8e7e07e821b88f9d6e15b.zip CMake-f901b9c3403b62b0a5f8e7e07e821b88f9d6e15b.tar.gz CMake-f901b9c3403b62b0a5f8e7e07e821b88f9d6e15b.tar.bz2 |
fix warning
Diffstat (limited to 'Source/cmMarkAsAdvancedCommand.cxx')
-rw-r--r-- | Source/cmMarkAsAdvancedCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMarkAsAdvancedCommand.cxx b/Source/cmMarkAsAdvancedCommand.cxx index e88d1e2..ed7d7a5 100644 --- a/Source/cmMarkAsAdvancedCommand.cxx +++ b/Source/cmMarkAsAdvancedCommand.cxx @@ -48,7 +48,7 @@ bool cmMarkAsAdvancedCommand::InitialPass(std::vector<std::string> 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"; |