diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-25 11:59:57 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-25 11:59:57 (GMT) |
commit | 945c4a8b5b2e0650478f6bc67029d9481207702d (patch) | |
tree | ff00b9bb59ecaae535ad58542420488f719fabe3 /Source/cmOptionCommand.cxx | |
parent | 0c948312edfee7cf3e44c167bdc20f86b8f60266 (diff) | |
download | CMake-945c4a8b5b2e0650478f6bc67029d9481207702d.zip CMake-945c4a8b5b2e0650478f6bc67029d9481207702d.tar.gz CMake-945c4a8b5b2e0650478f6bc67029d9481207702d.tar.bz2 |
WAR: remove warnings for .NET compiler
Diffstat (limited to 'Source/cmOptionCommand.cxx')
-rw-r--r-- | Source/cmOptionCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmOptionCommand.cxx b/Source/cmOptionCommand.cxx index 4478a21..7af7d95 100644 --- a/Source/cmOptionCommand.cxx +++ b/Source/cmOptionCommand.cxx @@ -37,7 +37,7 @@ bool cmOptionCommand::InitialPass(std::vector<std::string> const& args) if(argError) { std::string m = "called with incorrect number of arguments: "; - for(int i =0; i < args.size(); ++i) + for(size_t i =0; i < args.size(); ++i) { m += args[i]; m += " "; |