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 4, 2024
1 parent 61509f2 commit e876423
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 @@ -3458,7 +3458,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 e876423

Please sign in to comment.