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 | cd8f6e2d64b68dc5fb7774391629adafa1175852 (patch) | |
tree | 39a9a7b77413b906486079ddbf34522234aa45b2 /util/generic | |
parent | dd0a071a4202feb26c92240b37ecb9b884ca3849 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/generic')
-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 badfb889933..bebae3d4d68 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 |