From: Mattia Barbon Date: Mon, 9 Dec 2002 18:08:12 +0000 (+0000) Subject: The size_type typedef must be public. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/2d6c58d653b8f61eae0cc439fa7b4511fd1cf477 The size_type typedef must be public. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/vector.h b/include/wx/vector.h index fa01349ca5..6dd37e3243 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -15,9 +15,9 @@ class WXDLLEXPORT wxVectorBase { -private: +public: typedef size_t size_type; - +private: size_type m_allocsize; size_type m_size, m_capacity;