aboutsummaryrefslogtreecommitdiffstats
path: root/util/digest
diff options
context:
space:
mode:
authormvel <mvel@yandex-team.ru>2022-02-10 16:45:41 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:45:41 +0300
commit43f5a35593ebc9f6bcea619bb170394ea7ae468e (patch)
treee98df59de24d2ef7c77baed9f41e4875a2fef972 /util/digest
parentbd30392c4cc92487950adc375c07adf52da1d592 (diff)
downloadydb-43f5a35593ebc9f6bcea619bb170394ea7ae468e.tar.gz
Restoring authorship annotation for <mvel@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/digest')
-rw-r--r--util/digest/fnv.h6
-rw-r--r--util/digest/fnv_ut.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/util/digest/fnv.h b/util/digest/fnv.h
index efedb95ac9..87b41a3de7 100644
--- a/util/digest/fnv.h
+++ b/util/digest/fnv.h
@@ -66,8 +66,8 @@ template <class T>
static constexpr T FnvHash(const void* buf, size_t len) {
return FnvHash<T>((const unsigned char*)buf, (const unsigned char*)buf + len);
}
-
-template <class T, class Buf>
+
+template <class T, class Buf>
static constexpr T FnvHash(const Buf& buf) {
return FnvHash<T>(buf.data(), buf.size() * sizeof(*buf.data()));
-}
+}
diff --git a/util/digest/fnv_ut.cpp b/util/digest/fnv_ut.cpp
index d295586efd..ce56642b3e 100644
--- a/util/digest/fnv_ut.cpp
+++ b/util/digest/fnv_ut.cpp
@@ -4,7 +4,7 @@
Y_UNIT_TEST_SUITE(TFnvTest) {
Y_UNIT_TEST(TestFnv32) {
- const auto h32 = ULL(2849763999);
+ const auto h32 = ULL(2849763999);
UNIT_ASSERT_EQUAL(FnvHash<ui32>("1234567", 7), h32);
UNIT_ASSERT_EQUAL(FnvHash<ui32>(TStringBuf("1234567")), h32);
@@ -16,7 +16,7 @@ Y_UNIT_TEST_SUITE(TFnvTest) {
const auto h64 = ULL(2449551094593701855);
UNIT_ASSERT_EQUAL(FnvHash<ui64>("1234567", 7), h64);
UNIT_ASSERT_EQUAL(FnvHash<ui64>(TStringBuf("1234567")), h64);
-
+
UNIT_ASSERT_EQUAL(FnvHash<ui64>(nullptr, 0), FNV64INIT);
UNIT_ASSERT_EQUAL(FnvHash<ui64>(TStringBuf()), FNV64INIT);
}