MurmurHash3: actually inline functions

"__attribute__((always_inline))" does not replace "inline" and they
still need to be used together. This fixes "always_inline function
might not be inlinable [-Wattributes]" warning in gcc 4.7

Idea-from-patch-by: Siarhei Siamashka <siarhei.siamashka@gmail.com>
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2013-04-14 13:11:06 -04:00
parent a56f19c4f9
commit 4094bcbfac

View file

@ -29,7 +29,7 @@
#else // defined(_MSC_VER)
#define FORCE_INLINE __attribute__((always_inline))
#define FORCE_INLINE inline __attribute__((always_inline))
static inline uint32_t rotl32 ( uint32_t x, int8_t r )
{