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 | 37f5763ca0b3305f610f3cf2d30f9b981386a2ba (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/generic/algorithm.h | |
parent | cd8f6e2d64b68dc5fb7774391629adafa1175852 (diff) | |
download | ydb-37f5763ca0b3305f610f3cf2d30f9b981386a2ba.tar.gz |
Restoring authorship annotation for <shuster@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/algorithm.h')
-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 bebae3d4d6..badfb88993 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 |