aboutsummaryrefslogtreecommitdiffstats
path: root/util/generic/algorithm.h
diff options
context:
space:
mode:
authorvayerx <vayerx@yandex-team.ru>2022-02-10 16:52:04 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:52:04 +0300
commitb3f694bf40fc2866a161b2d25911171879b7ef18 (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb /util/generic/algorithm.h
parentd40bf94919f2035f1f522c4a285adce76f8f4edc (diff)
downloadydb-b3f694bf40fc2866a161b2d25911171879b7ef18.tar.gz
Restoring authorship annotation for <vayerx@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/generic/algorithm.h')
-rw-r--r--util/generic/algorithm.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/util/generic/algorithm.h b/util/generic/algorithm.h
index d6f81365c7..badfb88993 100644
--- a/util/generic/algorithm.h
+++ b/util/generic/algorithm.h
@@ -367,26 +367,26 @@ template <class T1, class T2, class P>
static inline bool Equal(T1 f1, T1 l1, T2 f2, P p) {
return std::equal(f1, l1, f2, p);
}
-
-template <class TI, class TO>
-static inline TO Copy(TI f, TI l, TO t) {
+
+template <class TI, class TO>
+static inline TO Copy(TI f, TI l, TO t) {
return std::copy(f, l, t);
-}
-
-template <class TI, class TO>
-static inline TO UniqueCopy(TI f, TI l, TO t) {
+}
+
+template <class TI, class TO>
+static inline TO UniqueCopy(TI f, TI l, TO t) {
return std::unique_copy(f, l, t);
-}
-
-template <class TI, class TO, class TP>
-static inline TO UniqueCopy(TI f, TI l, TO t, TP p) {
+}
+
+template <class TI, class TO, class TP>
+static inline TO UniqueCopy(TI f, TI l, TO t, TP p) {
return std::unique_copy(f, l, t, p);
-}
-
-template <class TI, class TO, class TP>
-static inline TO RemoveCopyIf(TI f, TI l, TO t, TP p) {
+}
+
+template <class TI, class TO, class TP>
+static inline TO RemoveCopyIf(TI f, TI l, TO t, TP p) {
return std::remove_copy_if(f, l, t, p);
-}
+}
template <class TI, class TO>
static inline TO ReverseCopy(TI f, TI l, TO t) {