common: Remove concepts usage

This commit is contained in:
emufan4568
2022-10-21 18:07:38 +03:00
committed by GPUCode
parent cfa1a7b91c
commit f656610a41

View File

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