diff options
author | shuster <[email protected]> | 2022-02-10 16:52:06 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:06 +0300 |
commit | 37f5763ca0b3305f610f3cf2d30f9b981386a2ba (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb | |
parent | cd8f6e2d64b68dc5fb7774391629adafa1175852 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
-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 bebae3d4d68..badfb889933 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 |