diff options
author | alikulin <[email protected]> | 2022-02-10 16:52:08 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:52:08 +0300 |
commit | 0cd79982d21be2f97f3801e35c4f9a2045dcefc2 (patch) | |
tree | ab7fbbf3253d4c0e2793218f09378908beb025fb /util/generic | |
parent | a312083b5495256c202dde513a5063135a3d950c (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/generic')
-rw-r--r-- | util/generic/vector.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/generic/vector.h b/util/generic/vector.h index 83ed754ef08..a5b258955a8 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) { |