From b3743e9453665ebb03004925a00c22fcbf82cc1f Mon Sep 17 00:00:00 2001 From: MerryMage Date: Fri, 2 Sep 2016 14:22:27 +0100 Subject: [PATCH] Revert "arm_types: Don't use std::hash() for LocationDescriptorHash" This reverts commit 519c714dbc4862d923460738c2a785fe876a9cb8. --- src/frontend/arm_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/arm_types.h b/src/frontend/arm_types.h index dc68482b..e37c542b 100644 --- a/src/frontend/arm_types.h +++ b/src/frontend/arm_types.h @@ -128,7 +128,7 @@ private: struct LocationDescriptorHash { size_t operator()(const LocationDescriptor& x) const { - return static_cast(x.UniqueHash()); + return std::hash()(x.UniqueHash()); } };