From 7c8aaed1c7dff18f7eacc7fcabe527c62cc01fbc Mon Sep 17 00:00:00 2001 From: David Webster Date: Fri, 10 Mar 2000 23:12:50 +0000 Subject: [PATCH] remove the VisualAge 3.0 hack git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/object.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/common/object.cpp b/src/common/object.cpp index 30f1f605cf..ab59919f01 100644 --- a/src/common/object.cpp +++ b/src/common/object.cpp @@ -375,18 +375,8 @@ void wxObject::UnRef() wxASSERT_MSG( m_refData->m_count > 0, _T("invalid ref data count") ); if ( !--m_refData->m_count ) -#if defined(__VISAGECPP__) && IBMCPP < 400 - // - // don't know what is going on with VA 3.0 but its got some memory problems here - // this delete causes a trap in CPPOOM3.DLL - // - { - } -#else delete m_refData; - m_refData = (wxObjectRefData *) NULL; -#endif } } -- 2.45.2