From 2d6c58d653b8f61eae0cc439fa7b4511fd1cf477 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Mon, 9 Dec 2002 18:08:12 +0000 Subject: [PATCH] The size_type typedef must be public. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;