From f2a0114e692b445eee3e1b02e02e10e9d60bd409 Mon Sep 17 00:00:00 2001 From: Ron Lee Date: Mon, 23 May 2005 02:41:21 +0000 Subject: [PATCH] Whatever was wrong with this, it will need to be fixed some other way, the blind hack this reverts (#1007859) removes two symbols from the library and breaks backward compatibility. Someone will need to look at what is actually wrong with bcc builds and the patches that followed from this initial (itself wrong) change. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@34279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/memory.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/common/memory.cpp b/src/common/memory.cpp index 8ff352a193..0f44178f44 100644 --- a/src/common/memory.cpp +++ b/src/common/memory.cpp @@ -1075,5 +1075,13 @@ void wxTraceLevel(int, const wxChar * ...) #endif } +#else // wxUSE_MEMORY_TRACING && defined(__WXDEBUG__) +void wxTrace(const char *WXUNUSED(fmt) ...) +{ +} + +void wxTraceLevel(int WXUNUSED(level), const char *WXUNUSED(fmt) ...) +{ +} #endif