X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a9c1799a01ac7a24338877a8e9d321450aa8f082..b4e100c635317aa78edddfe6ae8f8c0feb69b2a4:/src/mc/mc_hash.cpp diff --git a/src/mc/mc_hash.cpp b/src/mc/mc_hash.cpp index 7a0249db13..b260507326 100644 --- a/src/mc/mc_hash.cpp +++ b/src/mc/mc_hash.cpp @@ -8,9 +8,9 @@ #include -#include "mc_private.h" +#include "src/mc/mc_private.h" #include "mc/datatypes.h" -#include "mc_hash.hpp" +#include "src/mc/mc_hash.hpp" #include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_hash, mc, "Logging specific to mc_hash"); @@ -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() {