Skip to content

Commit

Permalink
Fix the inlining incantations so they work on the latest versions of …
Browse files Browse the repository at this point in the history
…GCC without a warning.

Thanks, norswap: #3
  • Loading branch information
PeterScott committed Oct 1, 2012
1 parent a6659a7 commit 6231d81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion murmur3.c
Expand Up @@ -13,7 +13,7 @@
// Platform-specific functions and macros

#ifdef __GNUC__
#define FORCE_INLINE __attribute__((always_inline))
#define FORCE_INLINE __attribute__((always_inline)) inline
#else
#define FORCE_INLINE
#endif
Expand Down

0 comments on commit 6231d81

Please sign in to comment.