diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-10 11:11:14 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-10 11:36:01 +0200 |
commit | eae196aa00d2760598ed700dd66b9c4a604c1d9a (patch) | |
tree | 2fcf7978b7d059f37ed3c148fe8eb91e930536bb /compat/int-hash.hpp | |
parent | f96da27624cb11151808f7602259c0f40a54d27f (diff) |
actually no need for non-overloaded int_hash
Diffstat (limited to 'compat/int-hash.hpp')
-rw-r--r-- | compat/int-hash.hpp | 7 |
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 |