mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-14 17:13:40 +00:00
[fasthash] Remove GNU extension
This commit is contained in:
parent
99f5050ccd
commit
f04d08b883
1 changed files with 4 additions and 4 deletions
|
@ -259,10 +259,10 @@ HB_FUNCOBJ (hb_bool);
|
|||
|
||||
// Compression function for Merkle-Damgard construction.
|
||||
// This function is generated using the framework provided.
|
||||
#define mix(h) ({ \
|
||||
(h) ^= (h) >> 23; \
|
||||
(h) *= 0x2127599bf4325c37ULL; \
|
||||
(h) ^= (h) >> 47; })
|
||||
#define mix(h) ( \
|
||||
(h) ^= (h) >> 23, \
|
||||
(h) *= 0x2127599bf4325c37ULL, \
|
||||
(h) ^= (h) >> 47)
|
||||
|
||||
static inline uint64_t fasthash64(const void *buf, size_t len, uint64_t seed)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue