minor formatting
This commit is contained in:
parent
650e8eea8a
commit
4b3b62a40c
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ template <class T>
|
|||
inline void hash_combine(std::size_t & seed, T const& v)
|
||||
{
|
||||
std::hash<T> hasher;
|
||||
seed ^= hasher(v) + 0x9e3779b9 + (seed<<6) + (seed>>2);
|
||||
seed ^= hasher(v) + 0x9e3779b9 + (seed << 6) + (seed >> 2);
|
||||
}
|
||||
|
||||
struct value_hasher
|
||||
|
|
Loading…
Reference in a new issue