aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs
diff options
context:
space:
mode:
authorStepan Polokhin <ilikebigcat@yandex.ru>2022-02-10 16:46:28 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:28 +0300
commit2206dbc39b1836bfe03187ac76eb9a70bfad4735 (patch)
tree2e0ff80154aa08020279abce76af2ec202288f68 /contrib/libs
parent889e4ac5f8ac5a463b06b9b64de835d736c06980 (diff)
downloadydb-2206dbc39b1836bfe03187ac76eb9a70bfad4735.tar.gz
Restoring authorship annotation for Stepan Polokhin <ilikebigcat@yandex.ru>. Commit 1 of 2.
Diffstat (limited to 'contrib/libs')
-rw-r--r--contrib/libs/highwayhash/highwayhash/state_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/highwayhash/highwayhash/state_helpers.h b/contrib/libs/highwayhash/highwayhash/state_helpers.h
index 4dd651260f..0ac496cb68 100644
--- a/contrib/libs/highwayhash/highwayhash/state_helpers.h
+++ b/contrib/libs/highwayhash/highwayhash/state_helpers.h
@@ -46,7 +46,7 @@ typedef unsigned long long HH_U64; // NOLINT
template <class State>
HH_INLINE void PaddedUpdate(const HH_U64 size, const char* remaining_bytes,
const HH_U64 remaining_size, State* state) {
- HH_ALIGNAS(32) char final_packet[State::kPacketSize] = {0};
+ HH_ALIGNAS(32) char final_packet[State::kPacketSize] = {0};
// This layout matches the AVX-2 specialization in highway_tree_hash.h.
uint32_t packet4 = static_cast<uint32_t>(size) << 24;