The size_type typedef must be public.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon 2002-12-09 18:08:12 +00:00
parent 27635a90c7
commit 2d6c58d653

View File

@ -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;