From 9526efcf7288e5c869caff6186dc4ee813652bde Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Thu, 28 Mar 2024 08:11:48 -0400 Subject: [PATCH] Fix V3Hash MacOS ambiguity (#5011) --- src/V3OrderMoveGraph.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/V3OrderMoveGraph.h b/src/V3OrderMoveGraph.h index e401c229a..02013103d 100644 --- a/src/V3OrderMoveGraph.h +++ b/src/V3OrderMoveGraph.h @@ -110,8 +110,8 @@ class OrderMoveDomScope final { struct Hash final { size_t operator()(const DomScopeMapKey& key) const { - V3Hash hash{reinterpret_cast(key.m_domainp)}; - hash += reinterpret_cast(key.m_scopep); + V3Hash hash{reinterpret_cast(key.m_domainp)}; + hash += reinterpret_cast(key.m_scopep); return hash.value(); } };