From 80ea1826d349e2200636680680ce3952225cc239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Zieli=C5=84ski?= Date: Mon, 18 Dec 2023 14:02:55 +0100 Subject: [PATCH] Style fix --- lib/int3.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } };