From eb60ef73b0af4ebbf35a67226edf1d8e61d972ae Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 5 Nov 2023 15:53:03 +0100 Subject: a --- src/point.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/point.cpp') diff --git a/src/point.cpp b/src/point.cpp index a6e27f66..3e970ba3 100644 --- a/src/point.cpp +++ b/src/point.cpp @@ -9,10 +9,10 @@ size_t point::hash() const static_assert(sizeof *this == size); #ifdef FLOORMAT_64 static_assert(sizeof nullptr > 4); - return fnvhash_64(this, sizeof *this); + return hash_64(this, sizeof *this); #else static_assert(sizeof nullptr == 4); - return fnvhash_32(this, sizeof *this); + return hash_32(this, sizeof *this); #endif } -- cgit v1.2.3