We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a3b6d3 commit 5540001Copy full SHA for 5540001
src/sentry/sentry_logger.cpp
@@ -166,9 +166,9 @@ inline size_t _hash(const T &p_value) {
166
return hasher(p_value);
167
}
168
169
-// Hash combining technique, originally from boost.
170
template <class T>
171
inline void _hash_combine(std::size_t &p_hash, const T &p_value) {
+ // NOTE: Hash combining technique, originally from boost.
172
std::hash<T> hasher;
173
p_hash ^= hasher(p_value) + 0x9e3779b9 + (p_hash << 6) + (p_hash >> 2);
174
0 commit comments