mirror of
https://github.com/boostorg/intrusive.git
synced 2025-08-02 22:14:35 +02:00
Fix indentation
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user