aboutsummaryrefslogtreecommitdiff
path: root/app/source/Cplt/Utils/Hash.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'app/source/Cplt/Utils/Hash.hpp')
-rw-r--r--app/source/Cplt/Utils/Hash.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/source/Cplt/Utils/Hash.hpp b/app/source/Cplt/Utils/Hash.hpp
index cf7713a..de8e63b 100644
--- a/app/source/Cplt/Utils/Hash.hpp
+++ b/app/source/Cplt/Utils/Hash.hpp
@@ -6,8 +6,7 @@
namespace HashUtils {
template <class T>
-void Combine(size_t& seed, const T& v)
-{
+void Combine(size_t& seed, const T& v) {
std::hash<T> hasher;
seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
}