Skip to content

Commit

Permalink
Update src/Misc/OrdLocalization.jl
Browse files Browse the repository at this point in the history
Co-authored-by: Lars Göttgens <[email protected]>
  • Loading branch information
thofma and lgoettgens authored Jan 8, 2025
1 parent f11a560 commit a5cc3ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Misc/OrdLocalization.jl
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,8 @@ end

function Base.hash(a::OrdLocElem, h::UInt)
b = 0x33dd41cd510034d2%UInt
b = xor(hash(parent(a), h), h)
b = xor(hash(data(a), h), h)
b = xor(hash(parent(a), h), b)
b = xor(hash(data(a), h), b)
return b
end

Expand Down

0 comments on commit a5cc3ec

Please sign in to comment.