From e826ebc0dee525ef263356dece4e470c3303cc7a Mon Sep 17 00:00:00 2001
From: a-bocharov <a-bocharov@yandex-team.ru>
Date: Thu, 10 Feb 2022 16:51:42 +0300
Subject: Restoring authorship annotation for <a-bocharov@yandex-team.ru>.
 Commit 2 of 2.

---
 util/generic/algorithm.h | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

(limited to 'util/generic/algorithm.h')

diff --git a/util/generic/algorithm.h b/util/generic/algorithm.h
index 05a6c093ec..badfb88993 100644
--- a/util/generic/algorithm.h
+++ b/util/generic/algorithm.h
@@ -192,21 +192,21 @@ static inline auto FindIfPtr(C&& c, P pred) {
 }
 
 template <class C, class T>
-static inline size_t FindIndex(C&& c, const T& x) { 
+static inline size_t FindIndex(C&& c, const T& x) {
     using std::begin;
     using std::end;
     auto it = Find(begin(c), end(c), x);
     return it == end(c) ? NPOS : (it - begin(c));
 }
 
-template <class C, class P> 
-static inline size_t FindIndexIf(C&& c, P p) { 
-    using std::begin; 
-    using std::end; 
-    auto it = FindIf(begin(c), end(c), p); 
-    return it == end(c) ? NPOS : (it - begin(c)); 
-} 
- 
+template <class C, class P>
+static inline size_t FindIndexIf(C&& c, P p) {
+    using std::begin;
+    using std::end;
+    auto it = FindIf(begin(c), end(c), p);
+    return it == end(c) ? NPOS : (it - begin(c));
+}
+
 //EqualToOneOf(x, "apple", "orange") means (x == "apple" || x == "orange")
 template <typename T>
 inline bool EqualToOneOf(const T&) {
-- 
cgit v1.2.3