Commit 9d59a044 by Jamie Madill

Ignore GCC's always inline warnings in MurmurHash.

These were benign and treated as errors. The always inline attribute may still have some value, so I left it in. BUG=angle:773 Change-Id: I78c5f792485e8f8d890123ee861cfecf2a5649be Reviewed-on: https://chromium-review.googlesource.com/232790Tested-by: 's avatarJamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarBrandon Jones <bajones@chromium.org>
parent 0540e5d5
...@@ -29,6 +29,8 @@ ...@@ -29,6 +29,8 @@
#else // defined(_MSC_VER) #else // defined(_MSC_VER)
// Ignore GCC force inline warnings
#pragma GCC diagnostic ignored "-Wattributes"
#define FORCE_INLINE __attribute__((always_inline)) #define FORCE_INLINE __attribute__((always_inline))
inline uint32_t rotl32 ( uint32_t x, int8_t r ) inline uint32_t rotl32 ( uint32_t x, int8_t r )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment