aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/highwayhash
diff options
context:
space:
mode:
authorStepan Polokhin <ilikebigcat@yandex.ru>2022-02-10 16:46:29 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:29 +0300
commit1c8fad4dbdab65ce5d4d0740cd02f90c069b4f17 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /contrib/libs/highwayhash
parent2206dbc39b1836bfe03187ac76eb9a70bfad4735 (diff)
downloadydb-1c8fad4dbdab65ce5d4d0740cd02f90c069b4f17.tar.gz
Restoring authorship annotation for Stepan Polokhin <ilikebigcat@yandex.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/highwayhash')
-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 0ac496cb68..4dd651260f 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;