summaryrefslogtreecommitdiffhomepage
path: root/compat/int-hash.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/int-hash.hpp')
-rw-r--r--compat/int-hash.hpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/compat/int-hash.hpp b/compat/int-hash.hpp
index e5cfc67a..2266bb4d 100644
--- a/compat/int-hash.hpp
+++ b/compat/int-hash.hpp
@@ -2,10 +2,7 @@
namespace floormat {
-size_t int_hash32(uint32_t x) noexcept;
-size_t int_hash64(uint64_t x) noexcept;
-
-inline size_t int_hash(uint32_t x) noexcept { return int_hash32(x); }
-inline size_t int_hash(uint64_t x) noexcept { return int_hash64(x); }
+size_t int_hash(uint32_t x) noexcept;
+size_t int_hash(uint64_t x) noexcept;
} // namespace floormat