]> git.saurik.com Git - wxWidgets.git/commitdiff
apply SF patch 1252602 to remove warnings in bcc and watcom
authorChris Elliott <biol75@york.ac.uk>
Fri, 5 Aug 2005 15:23:38 +0000 (15:23 +0000)
committerChris Elliott <biol75@york.ac.uk>
Fri, 5 Aug 2005 15:23:38 +0000 (15:23 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35109 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/vector.h

index 38a8f906305aacea4e3f775810c064063a070d15..57543bd0c653f331fa9e74c05200d6f43345f7d7 100644 (file)
@@ -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);\
     }\