[Cmake-commits] CMake branch, next, updated. v2.8.3-848-g67a4de1

Brad King brad.king at kitware.com
Mon Dec 13 16:13:34 EST 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  67a4de115fac38e526aea034b0aded4cdb55269a (commit)
       via  0053c8640027121b017052e1828221fc117d895d (commit)
      from  b06640cd9e1295b9af3f3525d955c67645a8e9ff (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=67a4de115fac38e526aea034b0aded4cdb55269a
commit 67a4de115fac38e526aea034b0aded4cdb55269a
Merge: b06640c 0053c86
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Dec 13 16:13:29 2010 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Dec 13 16:13:29 2010 -0500

    Merge topic 'dev/add-response-file-support' into next
    
    0053c86 Fix signed/unsigned integer comparison


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0053c8640027121b017052e1828221fc117d895d
commit 0053c8640027121b017052e1828221fc117d895d
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Dec 13 16:12:19 2010 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Dec 13 16:12:19 2010 -0500

    Fix signed/unsigned integer comparison

diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx
index b5afffb..28a7f2f 100644
--- a/Source/cmSystemTools.cxx
+++ b/Source/cmSystemTools.cxx
@@ -217,7 +217,7 @@ void cmSystemTools::ExpandResponseFiles(int ac, char** av,
   argc = args.size();
   argv = new char*[argc + 1];
 
-  for(size_t i = 0; i < argc; ++i)
+  for(int i = 0; i < argc; ++i)
     {
     argv[i] = strdup(args[i].c_str());
     }

-----------------------------------------------------------------------

Summary of changes:
 Source/cmSystemTools.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list