aboutsummaryrefslogtreecommitdiff
path: root/boot/result.cc
diff options
context:
space:
mode:
Diffstat (limited to 'boot/result.cc')
-rw-r--r--boot/result.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/result.cc b/boot/result.cc
index b56046b..c47be95 100644
--- a/boot/result.cc
+++ b/boot/result.cc
@@ -424,9 +424,9 @@ namespace elna::boot
{
hash_accumulator result{};
- result.m_seed ^= that + hash_accumulator::golden_ratio
- // NOLINTNEXTLINE(readability-magic-numbers)
- + (this->m_seed << 6) + (this->m_seed >> 2);
+ result.m_seed ^= that + golden_ratio
+ + (this->m_seed << mix_shift_left)
+ + (this->m_seed >> mix_shift_right);
return result;
}