]> git.saurik.com Git - wxWidgets.git/commitdiff
The size_type typedef must be public.
authorMattia Barbon <mbarbon@cpan.org>
Mon, 9 Dec 2002 18:08:12 +0000 (18:08 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Mon, 9 Dec 2002 18:08:12 +0000 (18:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/vector.h

index fa01349ca5b124d95cafe9244a52d1b0fa77f4e3..6dd37e3243dd2bb05857ae1bb75f59325d5c0028 100644 (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;