From e24d72290ae7956cb0605dc0c2bcb964bca63d41 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Sat, 11 Jan 2025 19:25:27 -0600 Subject: [PATCH] hashset.hpp --- src/hashset.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hashset.hpp b/src/hashset.hpp index 6fa99c1f..3226e9df 100644 --- a/src/hashset.hpp +++ b/src/hashset.hpp @@ -30,7 +30,7 @@ vt_hash_const_string(const char *key_) uint64_t hash = 0xcbf29ce484222325ull; while(*key_) - hash = ((const unsigned char)*key_++ ^ hash) * 0x100000001b3ull; + hash = (((const unsigned char)*key_++ ^ hash) * 0x100000001b3ull); return hash; }