[Cmake-commits] CMake branch, next, updated. v3.0.1-5029-g23b887d
Nils Gladitz
nilsgladitz at gmail.com
Mon Aug 25 17:35:11 EDT 2014
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 23b887df706fda7841891a86ce7c3780f01325b7 (commit)
via f6183718c73f374ad2393797e053fe2f86caf147 (commit)
from 4e916f2119667e9d284523de5f524b0051e94b4a (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=23b887df706fda7841891a86ce7c3780f01325b7
commit 23b887df706fda7841891a86ce7c3780f01325b7
Merge: 4e916f2 f618371
Author: Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Mon Aug 25 17:35:10 2014 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Aug 25 17:35:10 2014 -0400
Merge topic 'string-uuid' into next
f6183718 StringUuid: Workaround precision loss warning
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f6183718c73f374ad2393797e053fe2f86caf147
commit f6183718c73f374ad2393797e053fe2f86caf147
Author: Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Mon Aug 25 23:34:43 2014 +0200
Commit: Nils Gladitz <nilsgladitz at gmail.com>
CommitDate: Mon Aug 25 23:34:43 2014 +0200
StringUuid: Workaround precision loss warning
diff --git a/Source/cmUuid.cxx b/Source/cmUuid.cxx
index 57e9a60..a8149dd 100644
--- a/Source/cmUuid.cxx
+++ b/Source/cmUuid.cxx
@@ -34,7 +34,7 @@ std::string cmUuid::FromMd5(std::vector<unsigned char> const& uuidNamespace,
cmsysMD5_s *md5 = cmsysMD5_New();
cmsysMD5_Initialize(md5);
- cmsysMD5_Append(md5, &hashInput[0], hashInput.size());
+ cmsysMD5_Append(md5, &hashInput[0], int(hashInput.size()));
unsigned char digest[16] = {0};
cmsysMD5_Finalize(md5, digest);
-----------------------------------------------------------------------
Summary of changes:
Source/cmUuid.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list