diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-30 13:49:56 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2006-03-30 13:49:56 -0500 |
commit | 5a2668b326471874ca69357af831cdcf1575c621 (patch) | |
tree | 92f40c9de267766f0533df44212ec2df6415aa47 /Source/cmExecuteProcessCommand.cxx | |
parent | 08b14163ee2cc9cced08d80b2c81b29c83072229 (diff) | |
download | cmake-5a2668b326471874ca69357af831cdcf1575c621.tar.gz |
ENH: add support for win64 for visual studio 2005 ide and nmake, also fix warnings produced by building for win64
Diffstat (limited to 'Source/cmExecuteProcessCommand.cxx')
-rw-r--r-- | Source/cmExecuteProcessCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmExecuteProcessCommand.cxx b/Source/cmExecuteProcessCommand.cxx index 4090529194..fec9070237 100644 --- a/Source/cmExecuteProcessCommand.cxx +++ b/Source/cmExecuteProcessCommand.cxx @@ -32,7 +32,7 @@ bool cmExecuteProcessCommand::InitialPass(std::vector<std::string> const& args) std::vector< std::vector<const char*> > cmds; std::string arguments; bool doing_command = false; - unsigned int command_index = 0; + size_t command_index = 0; bool output_quiet = false; bool error_quiet = false; std::string timeout_string; |