VC6 compilation fix
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48350 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -183,8 +183,9 @@ public:
|
|||||||
#endif // WXWIN_COMPATIBILITY_2_8
|
#endif // WXWIN_COMPATIBILITY_2_8
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static const size_type ALLOC_INITIAL_SIZE = 16;
|
// VC6 can't compile static const int members
|
||||||
static const size_type ALLOC_MAX_SIZE = 4096;
|
enum { ALLOC_INITIAL_SIZE = 16 };
|
||||||
|
enum { ALLOC_MAX_SIZE = 4096 };
|
||||||
|
|
||||||
void Copy(const wxVector& vb)
|
void Copy(const wxVector& vb)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user