Skip to content

Commit 36dfdbb

Browse files
committed
Whitespace.
1 parent 83df2f5 commit 36dfdbb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/hash/siphash.cpp

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ constexpr void compression_round(uint64_t& v0, uint64_t& v1, uint64_t& v2,
7373
v0 ^= word;
7474
}
7575

76-
uint64_t siphash(const siphash_key& key,
77-
const data_slice& message) NOEXCEPT
76+
uint64_t siphash(const siphash_key& key, const data_slice& message) NOEXCEPT
7877
{
7978
auto v0 = siphash_magic_0 ^ std::get<0>(key);
8079
auto v1 = siphash_magic_1 ^ std::get<1>(key);
@@ -106,8 +105,7 @@ uint64_t siphash(const siphash_key& key,
106105
return v0 ^ v1 ^ v2 ^ v3;
107106
}
108107

109-
uint64_t siphash(const half_hash& hash,
110-
const data_slice& message) NOEXCEPT
108+
uint64_t siphash(const half_hash& hash, const data_slice& message) NOEXCEPT
111109
{
112110
return siphash(to_siphash_key(hash), message);
113111
}

0 commit comments

Comments
 (0)