aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/containers/sorted_vector
diff options
context:
space:
mode:
authorgrand <grand@yandex-team.ru>2022-02-10 16:50:06 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:50:06 +0300
commit7eb3862cccdb866e7e739123c8024ccec628bb62 (patch)
tree5ce974787810a396bb1c1cca605feef8f9e85679 /library/cpp/containers/sorted_vector
parent13dbd0acb78595551b843005d6bd021bdc1a859b (diff)
downloadydb-7eb3862cccdb866e7e739123c8024ccec628bb62.tar.gz
Restoring authorship annotation for <grand@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/containers/sorted_vector')
-rw-r--r--library/cpp/containers/sorted_vector/sorted_vector.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/library/cpp/containers/sorted_vector/sorted_vector.h b/library/cpp/containers/sorted_vector/sorted_vector.h
index 123539af9e..cf349875e9 100644
--- a/library/cpp/containers/sorted_vector/sorted_vector.h
+++ b/library/cpp/containers/sorted_vector/sorted_vector.h
@@ -8,8 +8,8 @@
#include <util/ysaveload.h>
#include <utility>
-#include <initializer_list>
-
+#include <initializer_list>
+
namespace NSorted {
namespace NPrivate {
template <class TPredicate>
@@ -80,18 +80,18 @@ namespace NSorted {
{
}
- inline TSortedVector(std::initializer_list<value_type> il)
- : TBase(il)
- {
- Sort();
- }
-
- inline TSortedVector(std::initializer_list<value_type> il, const typename TBase::allocator_type& a)
- : TBase(il, a)
- {
- Sort();
- }
-
+ inline TSortedVector(std::initializer_list<value_type> il)
+ : TBase(il)
+ {
+ Sort();
+ }
+
+ inline TSortedVector(std::initializer_list<value_type> il, const typename TBase::allocator_type& a)
+ : TBase(il, a)
+ {
+ Sort();
+ }
+
template <class TIter>
inline TSortedVector(TIter first, TIter last)
: TBase(first, last)