diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-01-28 10:37:40 -0800 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-01-28 10:37:40 -0800 | 
| commit | ac4ea522cbe653f6362357ca108ca3bf726b6229 (patch) | |
| tree | 89c318b489a72d4d9fdf642f1bdaa80c067c2d37 | |
| parent | 4bf16b79e66fe50ec01bcc9ace5ec38bc0bd00e2 (diff) | |
| parent | 818b1730a9f4775e29c4d9470e1aa193a82a1c7d (diff) | |
Merge pull request #2485 from Kloen/killing-warnings-computehash64
Switch ComputeHash64 len param to size_t instead of int
| -rw-r--r-- | src/common/hash.cpp | 8 | ||||
| -rw-r--r-- | src/common/hash.h | 5 | 
2 files changed, 7 insertions, 6 deletions
diff --git a/src/common/hash.cpp b/src/common/hash.cpp index 2309320bb..f3d390dc5 100644 --- a/src/common/hash.cpp +++ b/src/common/hash.cpp @@ -16,7 +16,7 @@ namespace Common {  // Block read - if your platform needs to do endian-swapping or can only handle aligned reads, do  // the conversion here -static FORCE_INLINE u64 getblock64(const u64* p, int i) { +static FORCE_INLINE u64 getblock64(const u64* p, size_t i) {      return p[i];  } @@ -34,9 +34,9 @@ static FORCE_INLINE u64 fmix64(u64 k) {  // This is the 128-bit variant of the MurmurHash3 hash function that is targeted for 64-bit  // platforms (MurmurHash3_x64_128). It was taken from:  // https://code.google.com/p/smhasher/source/browse/trunk/MurmurHash3.cpp -void MurmurHash3_128(const void* key, int len, u32 seed, void* out) { +void MurmurHash3_128(const void* key, size_t len, u32 seed, void* out) {      const u8* data = (const u8*)key; -    const int nblocks = len / 16; +    const size_t nblocks = len / 16;      u64 h1 = seed;      u64 h2 = seed; @@ -48,7 +48,7 @@ void MurmurHash3_128(const void* key, int len, u32 seed, void* out) {      const u64* blocks = (const u64*)(data); -    for (int i = 0; i < nblocks; i++) { +    for (size_t i = 0; i < nblocks; i++) {          u64 k1 = getblock64(blocks, i * 2 + 0);          u64 k2 = getblock64(blocks, i * 2 + 1); diff --git a/src/common/hash.h b/src/common/hash.h index a3850be68..ee2560dad 100644 --- a/src/common/hash.h +++ b/src/common/hash.h @@ -4,11 +4,12 @@  #pragma once +#include <cstddef>  #include "common/common_types.h"  namespace Common { -void MurmurHash3_128(const void* key, int len, u32 seed, void* out); +void MurmurHash3_128(const void* key, size_t len, u32 seed, void* out);  /**   * Computes a 64-bit hash over the specified block of data @@ -16,7 +17,7 @@ void MurmurHash3_128(const void* key, int len, u32 seed, void* out);   * @param len Length of data (in bytes) to compute hash over   * @returns 64-bit hash value that was computed over the data block   */ -static inline u64 ComputeHash64(const void* data, int len) { +static inline u64 ComputeHash64(const void* data, size_t len) {      u64 res[2];      MurmurHash3_128(data, len, 0, res);      return res[0];  | 
