[*] fix broken pair hasher
This commit is contained in:
parent
67e1948120
commit
16b3c024c8
@ -323,8 +323,8 @@ namespace AuHash
|
|||||||
{
|
{
|
||||||
AuUInt operator ()(const AuPair<T, Z> &pair) const
|
AuUInt operator ()(const AuPair<T, Z> &pair) const
|
||||||
{
|
{
|
||||||
return AuHashCode(AuGet<0>(pair)) ^
|
return AuHashCode(pair.first) ^
|
||||||
AuHashCode(AuGet<1>(pair));
|
AuHashCode(pair.second);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user