From f656610a414aaa3c0157ce6dab95725c9e2c652b Mon Sep 17 00:00:00 2001 From: emufan4568 Date: Fri, 21 Oct 2022 18:07:38 +0300 Subject: [PATCH] common: Remove concepts usage --- src/common/hash.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/hash.h b/src/common/hash.h index d1f073e9b..fd0128ce0 100644 --- a/src/common/hash.h +++ b/src/common/hash.h @@ -42,7 +42,7 @@ inline u64 HashCombine(std::size_t& seed, const u64 hash) { return seed ^= hash + 0x9e3779b9 + (seed << 6) + (seed >> 2); } -template +template struct IdentityHash { T operator()(const T& value) const { return value;