diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2005-03-07 14:15:10 +0000 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2005-03-07 14:15:10 +0000 |
commit | bcf0ceb584580049a250a850f8f4cc9ac2441608 (patch) | |
tree | ca9e1035ddfcb490a4a8e93acc193c66c7b172fb /cpp/src/Slice/Checksum.cpp | |
parent | Added instructions to add . to LD_LIBRARY_PATH (diff) | |
download | ice-bcf0ceb584580049a250a850f8f4cc9ac2441608.tar.bz2 ice-bcf0ceb584580049a250a850f8f4cc9ac2441608.tar.xz ice-bcf0ceb584580049a250a850f8f4cc9ac2441608.zip |
Get rid of a bunch of 64bit warnings on Sun
Diffstat (limited to 'cpp/src/Slice/Checksum.cpp')
-rw-r--r-- | cpp/src/Slice/Checksum.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/Checksum.cpp b/cpp/src/Slice/Checksum.cpp index a221506fcf6..500d3a62c60 100644 --- a/cpp/src/Slice/Checksum.cpp +++ b/cpp/src/Slice/Checksum.cpp @@ -299,7 +299,7 @@ Slice::ChecksumVisitor::typeToString(const TypePtr& type) void Slice::ChecksumVisitor::updateMap(const string& scoped, const string& data) { - IceUtil::MD5 md5(reinterpret_cast<const unsigned char*>(data.c_str()), data.size()); + IceUtil::MD5 md5(reinterpret_cast<const unsigned char*>(data.c_str()), static_cast<int>(data.size())); vector<unsigned char> bytes; bytes.resize(16); md5.getDigest(reinterpret_cast<unsigned char*>(&bytes[0])); |