diff options
| -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) { |
