summaryrefslogtreecommitdiffstats
path: root/src/hash_map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash_map.h')
-rw-r--r--src/hash_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash_map.h b/src/hash_map.h
index 7cbd052..3ad4d73 100644
--- a/src/hash_map.h
+++ b/src/hash_map.h
@@ -19,7 +19,7 @@
static const unsigned int kSeed = 0xDECAFBAD;
// MurmurHash2, by Austin Appleby
-static
+static inline
unsigned int MurmurHash2(const void* key, int len, unsigned int seed) {
const unsigned int m = 0x5bd1e995;
const int r = 24;