diff options
author | babenko <babenko@yandex-team.ru> | 2022-02-10 16:49:19 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:19 +0300 |
commit | cec37806d8847aa3db53bafc9e251d4aaf325c12 (patch) | |
tree | 4a61c191e93e31d9ab423e258c71ab43550ee3d2 /util/digest/numeric.h | |
parent | 58cd0b86ed99a72df22479e26a20bc1c1e57e65e (diff) | |
download | ydb-cec37806d8847aa3db53bafc9e251d4aaf325c12.tar.gz |
Restoring authorship annotation for <babenko@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util/digest/numeric.h')
-rw-r--r-- | util/digest/numeric.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/digest/numeric.h b/util/digest/numeric.h index e20bd908e4..70abda0c9f 100644 --- a/util/digest/numeric.h +++ b/util/digest/numeric.h @@ -73,9 +73,9 @@ static constexpr size_t NumericHash(T t) noexcept { using TCvt = TFixedWidthUnsignedInt<T>; union Y_HIDDEN { - T t; + T t; TCvt cvt; - } u{t}; + } u{t}; return (size_t)IntHash(u.cvt); } |