From: Chris Elliott Date: Fri, 5 Aug 2005 15:23:38 +0000 (+0000) Subject: apply SF patch 1252602 to remove warnings in bcc and watcom X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/fa776a5809134bcdc8fd9dfdbcaed751cc5cae5b?ds=sidebyside apply SF patch 1252602 to remove warnings in bcc and watcom git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35109 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/vector.h b/include/wx/vector.h index 38a8f90630..57543bd0c6 100644 --- a/include/wx/vector.h +++ b/include/wx/vector.h @@ -48,7 +48,7 @@ protected: const void *GetItem(size_type idx) const { - wxASSERT(idx >= 0 && idx < m_size); + wxASSERT(idx < m_size); return m_objects[idx]; } @@ -61,7 +61,7 @@ protected: void RemoveAt(size_type idx) { - wxASSERT(idx >= 0 && idx < m_size); + wxASSERT(idx < m_size); Free(m_objects[idx]); if (idx < m_size - 1) memcpy( @@ -143,7 +143,7 @@ private:\ }\ public:\ cls() {}\ - cls(const cls& c)\ + cls(const cls& c) : wxVectorBase()\ {\ wxCHECK2(copy(c), return);\ }\