diff options
author | zador <zador@yandex-team.ru> | 2022-02-10 16:49:59 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:59 +0300 |
commit | c3dfc267b339ecc20e1395244bfadb9d8298819d (patch) | |
tree | 0fc691f959cdef91f7bc3bda61f7e08fb358643b | |
parent | 2b7b1ea361eac9c59c4a56052d7292b3ed8829be (diff) | |
download | ydb-c3dfc267b339ecc20e1395244bfadb9d8298819d.tar.gz |
Restoring authorship annotation for <zador@yandex-team.ru>. Commit 1 of 2.
-rw-r--r-- | library/cpp/codecs/ya.make | 2 | ||||
-rw-r--r-- | util/generic/algorithm.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/library/cpp/codecs/ya.make b/library/cpp/codecs/ya.make index 7e76fb0c9a..a3a1156057 100644 --- a/library/cpp/codecs/ya.make +++ b/library/cpp/codecs/ya.make @@ -30,4 +30,4 @@ PEERDIR( library/cpp/string_utils/relaxed_escaper ) -END() +END() diff --git a/util/generic/algorithm.h b/util/generic/algorithm.h index badfb88993..a4782dea9d 100644 --- a/util/generic/algorithm.h +++ b/util/generic/algorithm.h @@ -559,7 +559,7 @@ template <class TI, class TOp> inline void ForEach(TI f, TI l, TOp op) { std::for_each(f, l, op); } - + namespace NPrivate { template <class T, class TOp, size_t... Is> constexpr bool AllOfImpl(T&& t, TOp&& op, std::index_sequence<Is...>) { @@ -624,9 +624,9 @@ constexpr ::TEnableIfTuple<T> ForEach(T&& t, TOp&& op) { } template <class T1, class T2, class O> -static inline void Transform(T1 b, T1 e, T2 o, O f) { +static inline void Transform(T1 b, T1 e, T2 o, O f) { std::transform(b, e, o, f); -} +} template <class T1, class T2, class T3, class O> static inline void Transform(T1 b1, T1 e1, T2 b2, T3 o, O f) { |