Skip to content

Commit

Permalink
forgotten inline
Browse files Browse the repository at this point in the history
  • Loading branch information
crocdialer committed Sep 29, 2024
1 parent d909364 commit a011ba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/vierkant/hash.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ inline uint64_t murmur3_fmix64(uint64_t k)
// Generate a random uint32_t from two uint32_t values
// @see: "Mark Jarzynski and Marc Olano, Hash Functions for GPU Rendering, Journal of Computer Graphics Techniques (JCGT), vol. 9, no. 3, 21-38, 2020"
// https://jcgt.org/published/0009/03/02/
uint32_t xxhash32(uint32_t lhs, uint32_t rhs)
inline uint32_t xxhash32(uint32_t lhs, uint32_t rhs)
{
const uint32_t PRIME32_2 = 2246822519U, PRIME32_3 = 3266489917U;
const uint32_t PRIME32_4 = 668265263U, PRIME32_5 = 374761393U;
Expand Down

0 comments on commit a011ba6

Please sign in to comment.