Fix indentation

This commit is contained in:
Ion Gaztañaga
2021-04-18 14:04:53 +02:00
parent 8a4c55a56d
commit 8bb619caf7

View File

@@ -47,8 +47,7 @@ inline void hash_combine_size_t(SizeT& seed, SizeT value)
seed ^= value + 0x9e3779b9 + (seed<<6) + (seed>>2);
}
inline void hash_combine_size_t(boost::uint32_t& h1,
boost::uint32_t k1)
inline void hash_combine_size_t(boost::uint32_t& h1, boost::uint32_t k1)
{
const uint32_t c1 = 0xcc9e2d51;
const uint32_t c2 = 0x1b873593;
@@ -67,8 +66,7 @@ inline void hash_combine_size_t(boost::uint32_t& h1,
// and also not for 32-bit gcc as it warns about the 64-bit constant.
#if !defined(BOOST_NO_INT64_T) && \
!(defined(__GNUC__) && ULONG_MAX == 0xffffffff)
inline void hash_combine_size_t(boost::uint64_t& h,
boost::uint64_t k)
inline void hash_combine_size_t(boost::uint64_t& h, boost::uint64_t k)
{
const boost::uint64_t m = UINT64_C(0xc6a4a7935bd1e995);
const int r = 47;