1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-15 20:03:15 +02:00

Style fix

This commit is contained in:
Tomasz Zieliński
2023-12-18 14:02:55 +01:00
parent 038bcd32f6
commit 80ea1826d3

View File

@@ -191,7 +191,7 @@ public:
std::size_t hz = v.z + 1000; std::size_t hz = v.z + 1000;
// Combine the hash values, multiplying them by prime numbers // Combine the hash values, multiplying them by prime numbers
return (hx * 4000037u) ^ (hy * 2003u) + hz; return ((hx * 4000037u) ^ (hy * 2003u)) + hz;
} }
}; };