From b5b3ecf6f55cf4e9e280f4cde1929ab085af8b30 Mon Sep 17 00:00:00 2001 From: Dmitriy Anisimov Date: Sat, 6 Sep 2014 09:47:53 +0400 Subject: [PATCH] fixed warning with hashMurmur --- modules/surface_matching/src/hash_murmur86.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/surface_matching/src/hash_murmur86.hpp b/modules/surface_matching/src/hash_murmur86.hpp index 0e2784ea4..85a61138d 100644 --- a/modules/surface_matching/src/hash_murmur86.hpp +++ b/modules/surface_matching/src/hash_murmur86.hpp @@ -48,6 +48,7 @@ void PMurHash32_Process(MH_UINT32 *ph1, MH_UINT32 *pcarry, const void *key, int len); MH_UINT32 PMurHash32_Result(MH_UINT32 h1, MH_UINT32 carry, MH_UINT32 total_length); MH_UINT32 PMurHash32(MH_UINT32 seed, const void *key, int len); +void hashMurmurx86 ( const void * key, const int len, const unsigned int seed, void * out ); /* I used ugly type names in the header to avoid potential conflicts with * application or system typedefs & defines. Since I'm not including any more