diff options
author | shuster <shuster@yandex-team.ru> | 2022-02-10 16:52:06 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:52:06 +0300 |
commit | cd8f6e2d64b68dc5fb7774391629adafa1175852 (patch) | |
tree | 39a9a7b77413b906486079ddbf34522234aa45b2 /util | |
parent | dd0a071a4202feb26c92240b37ecb9b884ca3849 (diff) | |
download | ydb-cd8f6e2d64b68dc5fb7774391629adafa1175852.tar.gz |
Restoring authorship annotation for <shuster@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'util')
-rw-r--r-- | util/generic/algorithm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/generic/algorithm.h b/util/generic/algorithm.h index badfb88993..bebae3d4d6 100644 --- a/util/generic/algorithm.h +++ b/util/generic/algorithm.h @@ -457,8 +457,8 @@ template <typename It, typename Val> Val Accumulate(It begin, It end, Val val) { // std::move since C++20 return std::accumulate(begin, end, std::move(val)); -} - +} + template <typename It, typename Val, typename BinOp> Val Accumulate(It begin, It end, Val val, BinOp binOp) { // std::move since C++20 |