summaryrefslogtreecommitdiffhomepage
path: root/src/point.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-11-05 15:53:03 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-11-05 15:53:03 +0100
commiteb60ef73b0af4ebbf35a67226edf1d8e61d972ae (patch)
treef9f002cf20cc62f831e996d360acdfd0806f746f /src/point.cpp
parent9c7e2fd21b6a39ad9f1eb0f699fc054559d2a6b9 (diff)
a
Diffstat (limited to 'src/point.cpp')
-rw-r--r--src/point.cpp4
1 files changed, 2 insertions, 2 deletions
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
}