Skip to content

Commit 5540001

Browse files
committed
Comment as NOTE
1 parent 4a3b6d3 commit 5540001

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sentry/sentry_logger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,9 @@ inline size_t _hash(const T &p_value) {
166166
return hasher(p_value);
167167
}
168168

169-
// Hash combining technique, originally from boost.
170169
template <class T>
171170
inline void _hash_combine(std::size_t &p_hash, const T &p_value) {
171+
// NOTE: Hash combining technique, originally from boost.
172172
std::hash<T> hasher;
173173
p_hash ^= hasher(p_value) + 0x9e3779b9 + (p_hash << 6) + (p_hash >> 2);
174174
}

0 commit comments

Comments
 (0)