aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralikulin <alikulin@yandex-team.ru>2022-02-10 16:52:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:52:08 +0300
commit0cd79982d21be2f97f3801e35c4f9a2045dcefc2 (patch)
treeab7fbbf3253d4c0e2793218f09378908beb025fb
parenta312083b5495256c202dde513a5063135a3d950c (diff)
downloadydb-0cd79982d21be2f97f3801e35c4f9a2045dcefc2.tar.gz
Restoring authorship annotation for <alikulin@yandex-team.ru>. Commit 2 of 2.
-rw-r--r--util/generic/vector.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/vector.h b/util/generic/vector.h
index 83ed754ef0..a5b258955a 100644
--- a/util/generic/vector.h
+++ b/util/generic/vector.h
@@ -53,10 +53,10 @@ public:
}
inline TVector(size_type count, const T& val, const typename TBase::allocator_type& a)
- : TBase(count, val, a)
- {
- }
-
+ : TBase(count, val, a)
+ {
+ }
+
inline TVector(std::initializer_list<T> il)
: TBase(il)
{