mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2025-04-28 13:27:58 +03:00
14 lines
No EOL
253 B
C++
14 lines
No EOL
253 B
C++
#pragma once
|
|
|
|
struct xxHash
|
|
{
|
|
using is_avalanching = void;
|
|
|
|
uint64_t operator()(XXH64_hash_t const& x) const noexcept
|
|
{
|
|
return x;
|
|
}
|
|
};
|
|
|
|
template<typename T>
|
|
using xxHashMap = ankerl::unordered_dense::map<XXH64_hash_t, T, xxHash>; |