[Cmake-commits] CMake branch, next, updated. v2.8.4-1622-g3cf3617

Zach Mullen zach.mullen at kitware.com
Fri May 27 10:46:27 EDT 2011


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  3cf36170580923dff1dd481f2710cce75307802a (commit)
       via  0e591ed4c24cdcea2727f07eae1502700d10efb1 (commit)
      from  26f56f51fbc7f9d7b8a6071ce1f30cf91d9bf916 (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=3cf36170580923dff1dd481f2710cce75307802a
commit 3cf36170580923dff1dd481f2710cce75307802a
Merge: 26f56f5 0e591ed
Author:     Zach Mullen <zach.mullen at kitware.com>
AuthorDate: Fri May 27 10:46:25 2011 -0400
Commit:     Zach Mullen <zach.mullen at kitware.com>
CommitDate: Fri May 27 10:46:25 2011 -0400

    Merge branch 'dont-compress-memcheck-output' into next
    
    * dont-compress-memcheck-output:
      Fix type conversion warning


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0e591ed4c24cdcea2727f07eae1502700d10efb1
commit 0e591ed4c24cdcea2727f07eae1502700d10efb1
Author:     Zach Mullen <zach.mullen at kitware.com>
AuthorDate: Fri May 27 10:45:41 2011 -0400
Commit:     Zach Mullen <zach.mullen at kitware.com>
CommitDate: Fri May 27 10:45:41 2011 -0400

    Fix type conversion warning

diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 60f01aa..75a564e 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -3099,7 +3099,7 @@ bool cmCTest::CompressString(std::string& str)
     return false;
     }
 
-  strm.avail_in = str.size();
+  strm.avail_in = static_cast<uInt>(str.size());
   strm.next_in = in;
   strm.avail_out = outSize;
   strm.next_out = out;

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

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


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list