diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-13 17:38:53 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-13 17:38:53 (GMT) |
commit | 41017cbc88b7f5e7de3df57f2626a7214eaeeb85 (patch) | |
tree | 26d46011cb0fa5243819d64840c088290d74cea5 /Source/cmIncludeExternalMSProjectCommand.cxx | |
parent | f3ebd438c75da4534ee77514381976d800db7bef (diff) | |
download | CMake-41017cbc88b7f5e7de3df57f2626a7214eaeeb85.zip CMake-41017cbc88b7f5e7de3df57f2626a7214eaeeb85.tar.gz CMake-41017cbc88b7f5e7de3df57f2626a7214eaeeb85.tar.bz2 |
ENH: clean up warnings
Diffstat (limited to 'Source/cmIncludeExternalMSProjectCommand.cxx')
-rw-r--r-- | Source/cmIncludeExternalMSProjectCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmIncludeExternalMSProjectCommand.cxx b/Source/cmIncludeExternalMSProjectCommand.cxx index 37333c2..243d7e9 100644 --- a/Source/cmIncludeExternalMSProjectCommand.cxx +++ b/Source/cmIncludeExternalMSProjectCommand.cxx @@ -21,7 +21,7 @@ bool cmIncludeExternalMSProjectCommand::InitialPass(std::vector<std::string> con std::vector<std::string> depends; if (args.size() > 2) { - for (int i=2; i<args.size(); ++i) { + for (unsigned int i=2; i<args.size(); ++i) { depends.push_back(args[i]); } } |