prevent compiler warnings on 32bit (code is not reached, but compilers complain)

master
Daniel Kolesa 2015-07-26 18:57:23 +01:00
parent 5cf1c9feff
commit 3fbaedbfc2
1 changed files with 2 additions and 2 deletions

View File

@ -225,8 +225,8 @@ namespace detail {
template<> struct FnvConstants<8> {
static constexpr Size prime = 1099511628211u;
static constexpr Size offset = 14695981039346656037u;
static constexpr Size prime = 1099511628211ull;
static constexpr Size offset = 14695981039346656037ull;
};
inline Size mem_hash(const void *p, Size l) {