Fix V3Hash MacOS ambiguity (#5011)

This commit is contained in:
Wilson Snyder 2024-03-28 08:11:48 -04:00
parent d397e0d838
commit 9526efcf72
1 changed files with 2 additions and 2 deletions

View File

@ -110,8 +110,8 @@ class OrderMoveDomScope final {
struct Hash final {
size_t operator()(const DomScopeMapKey& key) const {
V3Hash hash{reinterpret_cast<uintptr_t>(key.m_domainp)};
hash += reinterpret_cast<uintptr_t>(key.m_scopep);
V3Hash hash{reinterpret_cast<uint64_t>(key.m_domainp)};
hash += reinterpret_cast<uint64_t>(key.m_scopep);
return hash.value();
}
};