Unconditional assert means fail.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38299 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba 2006-03-23 11:47:21 +00:00
parent 0fdc2321bc
commit 7cb32b4b74

View File

@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////
// Name: hash.cpp
// Name: src/common/hash.cpp
// Purpose: wxHashTable implementation
// Author: Julian Smart
// Modified by: VZ at 25.02.00: type safe hashes with WX_DECLARE_HASH()
@ -1036,7 +1036,7 @@ void wxHashTable::DoCopy( const wxHashTable& WXUNUSED(table) )
{
Create( m_keyType, m_size );
wxASSERT( false );
wxFAIL;
}
void wxHashTable::DoDeleteContents( wxHashTableBase_Node* node )