diff --git a/lib/int3.h b/lib/int3.h index ce269d14b..4217619bd 100644 --- a/lib/int3.h +++ b/lib/int3.h @@ -191,7 +191,7 @@ public: std::size_t hz = v.z + 1000; // Combine the hash values, multiplying them by prime numbers - return (hx * 4000037u) ^ (hy * 2003u) + hz; + return ((hx * 4000037u) ^ (hy * 2003u)) + hz; } };