From: Gabriel Corona Date: Fri, 15 Jan 2016 13:54:52 +0000 (+0100) Subject: [mc] Fix the hash computation X-Git-Tag: v3_13~1235 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/756df47074b2d7b0721f234077f5ef8d75e13932?ds=sidebyside [mc] Fix the hash computation --- diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index ba391fab58..b260507326 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -26,7 +26,7 @@ public: template void update(T& x) { - state_ = (state_ << 5) + state_ + (std::uint64_t) value; + state_ = (state_ << 5) + state_ + state_; } hash_type value() {