浏览代码

Style fix

Tomasz Zieliński 1 年之前
父节点
当前提交
80ea1826d3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/int3.h

+ 1 - 1
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;
     }
 };