diff options
author | thegeorg <thegeorg@yandex-team.ru> | 2022-06-01 22:45:07 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.ru> | 2022-06-01 22:45:07 +0300 |
commit | 7c2622c5b8507929fcaff65fcd3f0aee4dc4a354 (patch) | |
tree | d7ae7252b46a7eac5d2ec6a28a4fd73db7bb150d /util/digest | |
parent | 8d1c25836bb85a8b53a47a47c04e8e185a34fdd4 (diff) | |
download | ydb-7c2622c5b8507929fcaff65fcd3f0aee4dc4a354.tar.gz |
Flatten util tests
ref:0297d20665112368dc5e412e2531f67b3dd3c3ec
Diffstat (limited to 'util/digest')
-rw-r--r-- | util/digest/benchmark/murmur/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/digest/benchmark/murmur/main.cpp b/util/digest/benchmark/murmur/main.cpp index 1fe2fdcc21..eae13e8e48 100644 --- a/util/digest/benchmark/murmur/main.cpp +++ b/util/digest/benchmark/murmur/main.cpp @@ -6,7 +6,7 @@ #include <array> constexpr auto MakeTestData() { - std::array<ui64, 4096> result; + std::array<ui64, 4096> result{}; for (ui64 i = 0; i < result.size(); ++i) { result[i] = i; } |