From 286dd054812c7df42ac1c2d9d5bb78f24b7ea46e Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Tue, 15 Sep 2015 21:06:00 +1000 Subject: [PATCH] hash: fix parameter names in mix wrappers --- hash.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hash.hpp b/hash.hpp index 49078d35..0d915c09 100644 --- a/hash.hpp +++ b/hash.hpp @@ -23,8 +23,8 @@ #include namespace util { namespace hash { - uint32_t mix (uint32_t v) { return wang (key); } - uint64_t mix (uint64_t v) { return wang (key); } + uint32_t mix (uint32_t v) { return wang (v); } + uint64_t mix (uint64_t v) { return wang (v); } } } #endif