From 4094bcbfacc78d2fadddefd8642aac2ae9464de6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sun, 14 Apr 2013 13:11:06 -0400 Subject: [PATCH] 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 --- src/shared/MurmurHash3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/MurmurHash3.c b/src/shared/MurmurHash3.c index dc56f6b0f..aa1387373 100644 --- a/src/shared/MurmurHash3.c +++ b/src/shared/MurmurHash3.c @@ -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 ) { -- 2.30.2