X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2d615fe9336b30558216af831eb52b598af336c9..cf509a9038c95c541f4080f2592924e82577af3f:/include/wx/vector.h diff --git a/include/wx/vector.h b/include/wx/vector.h index 1132087a5e..3d983aab19 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -183,8 +183,9 @@ public: #endif // WXWIN_COMPATIBILITY_2_8 private: - static const size_type ALLOC_INITIAL_SIZE = 16; - static const size_type ALLOC_MAX_SIZE = 4096; + // VC6 can't compile static const int members + enum { ALLOC_INITIAL_SIZE = 16 }; + enum { ALLOC_MAX_SIZE = 4096 }; void Copy(const wxVector& vb) {