]> git.saurik.com Git - wxWidgets.git/commitdiff
Unconditional assert means fail.
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 23 Mar 2006 11:47:21 +0000 (11:47 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 23 Mar 2006 11:47:21 +0000 (11:47 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38299 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/hash.cpp

index ebbc7fa58d6452fb2f7072e976ba3bb39d50dd95..bc1a7583aaeaed8c920ea463de95462de9408a20 100644 (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 )