hash: fix parameter names in mix wrappers
This commit is contained in:
parent
b66a3ba46f
commit
286dd05481
4
hash.hpp
4
hash.hpp
@ -23,8 +23,8 @@
|
|||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
namespace util { namespace hash {
|
namespace util { namespace hash {
|
||||||
uint32_t mix (uint32_t v) { return wang (key); }
|
uint32_t mix (uint32_t v) { return wang (v); }
|
||||||
uint64_t mix (uint64_t v) { return wang (key); }
|
uint64_t mix (uint64_t v) { return wang (v); }
|
||||||
} }
|
} }
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user