common: Remove concepts usage

This commit is contained in:
emufan4568
2022-10-21 18:07:38 +03:00
committed by GPUCode
parent 13771b805b
commit 89d234f642

View File

@@ -42,7 +42,7 @@ inline u64 HashCombine(std::size_t& seed, const u64 hash) {
return seed ^= hash + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}
template <std::integral T>
template <typename T>
struct IdentityHash {
T operator()(const T& value) const {
return value;