File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/third_party/murmurhash3 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -52,20 +52,20 @@ inline uint64_t rotl64 ( uint64_t x, int8_t r )
52
52
// Block read - if your platform needs to do endian-swapping or can only
53
53
// handle aligned reads, do the conversion here
54
54
55
- FORCE_INLINE inline uint32_t getblock ( const uint32_t * p, int i )
55
+ inline FORCE_INLINE uint32_t getblock ( const uint32_t * p, int i )
56
56
{
57
57
return p[i];
58
58
}
59
59
60
- FORCE_INLINE inline uint64_t getblock ( const uint64_t * p, int i )
60
+ inline FORCE_INLINE uint64_t getblock ( const uint64_t * p, int i )
61
61
{
62
62
return p[i];
63
63
}
64
64
65
65
// -----------------------------------------------------------------------------
66
66
// Finalization mix - force all bits of a hash block to avalanche
67
67
68
- FORCE_INLINE inline uint32_t fmix ( uint32_t h )
68
+ inline FORCE_INLINE uint32_t fmix ( uint32_t h )
69
69
{
70
70
h ^= h >> 16 ;
71
71
h *= 0x85ebca6b ;
@@ -78,7 +78,7 @@ FORCE_INLINE inline uint32_t fmix ( uint32_t h )
78
78
79
79
// ----------
80
80
81
- FORCE_INLINE inline uint64_t fmix ( uint64_t k )
81
+ inline FORCE_INLINE uint64_t fmix ( uint64_t k )
82
82
{
83
83
k ^= k >> 33 ;
84
84
k *= BIG_CONSTANT (0xff51afd7ed558ccd );
You can’t perform that action at this time.
0 commit comments