]> git.saurik.com Git - wxWidgets.git/commitdiff
removed useless assert from wxArray::Alloc
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 May 2001 00:19:42 +0000 (00:19 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 16 May 2001 00:19:42 +0000 (00:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10169 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dynarray.cpp

index bbf54265c431b7eb1d996e0b5a9e224e001a773d..5b4d11e9b9c5ef8a071123d16e53c5278eb4c77c 100644 (file)
@@ -141,8 +141,6 @@ void wxBaseArray::Clear()
 // pre-allocates memory (frees the previous data!)
 void wxBaseArray::Alloc(size_t nSize)
 {
-  wxASSERT( nSize > 0 );
-
   // only if old buffer was not big enough
   if ( nSize > m_nSize ) {
     wxDELETEA(m_pItems);