diff --git a/include/wx/dynarray.h b/include/wx/dynarray.h index 5356425475..9ed4c10642 100644 --- a/include/wx/dynarray.h +++ b/include/wx/dynarray.h @@ -438,6 +438,7 @@ public: \ bool operator !=(const itor& it) const { return m_ptr != it.m_ptr; }\ }; \ \ + name(size_type n) { assign(n, value_type()); } \ name(size_type n, const_reference v) { assign(n, v); } \ name(const_iterator first, const_iterator last) \ { assign(first, last); } \