Skip to content

Commit

Permalink
fixed XXH64_finalize() not being inlined
Browse files Browse the repository at this point in the history
even though `XXH_INLINE_ALL` is set
on `gcc-11`.
  • Loading branch information
Cyan4973 committed Dec 8, 2023
1 parent 9ad93ba commit 3fe4995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xxhash.h
Original file line number Diff line number Diff line change
Expand Up @@ -3410,7 +3410,7 @@ static xxh_u64 XXH64_avalanche(xxh_u64 hash)
* @return The finalized hash
* @see XXH32_finalize().
*/
static XXH_PUREF xxh_u64
XXH_FORCE_INLINE XXH_PUREF xxh_u64
XXH64_finalize(xxh_u64 hash, const xxh_u8* ptr, size_t len, XXH_alignment align)
{
if (ptr==NULL) XXH_ASSERT(len == 0);
Expand Down

0 comments on commit 3fe4995

Please sign in to comment.