aboutsummaryrefslogtreecommitdiffstats
path: root/util/digest
diff options
context:
space:
mode:
authorden <den@yandex-team.ru>2022-02-10 16:49:43 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:49:43 +0300
commit0beaf5069375bfa9589dbf4c281fbfcc7b11f71d (patch)
tree2a9075fe9636ba84e8db3369d5d39589cccac932 /util/digest
parent64b907678a38848c4af3d0270ccee688c5d7752c (diff)
downloadydb-0beaf5069375bfa9589dbf4c281fbfcc7b11f71d.tar.gz
Restoring authorship annotation for <den@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/digest')
-rw-r--r--util/digest/numeric.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/digest/numeric.h b/util/digest/numeric.h
index e20bd908e4..32fbe71445 100644
--- a/util/digest/numeric.h
+++ b/util/digest/numeric.h
@@ -18,7 +18,7 @@ static constexpr ui8 IntHashImpl(ui8 key8) noexcept {
key += ~(key << 11);
key ^= (key >> 16);
- return static_cast<ui8>(key);
+ return static_cast<ui8>(key);
}
static constexpr ui16 IntHashImpl(ui16 key16) noexcept {
@@ -31,7 +31,7 @@ static constexpr ui16 IntHashImpl(ui16 key16) noexcept {
key += ~(key << 11);
key ^= (key >> 16);
- return static_cast<ui16>(key);
+ return static_cast<ui16>(key);
}
static constexpr ui32 IntHashImpl(ui32 key) noexcept {
@@ -55,7 +55,7 @@ static constexpr ui64 IntHashImpl(ui64 key) noexcept {
key += ~(key << 27);
key ^= (key >> 31);
- return key;
+ return key;
}
template <class T>