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 | a312083b5495256c202dde513a5063135a3d950c (patch) | |
tree | 4004823f7f31a1b38a47a66ec1cb57e9fcb2e50d /util/generic | |
parent | bd038e90fb042b0ec259494b0b5530c1527289f2 (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 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 a5b258955a8..83ed754ef08 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) { |