make it possible to predefine __WXFUNCTION__ in user code to have a different behaviour (e.g. use __PRETTY_FUNCTION instead of __FUNCTION__ with gcc) if needed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38283 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-03-22 19:37:58 +00:00
parent fa3bd1aaea
commit 986d27c395

View File

@@ -47,6 +47,7 @@
#endif /* !WXDEBUG */ #endif /* !WXDEBUG */
#endif /* __WXDEBUG__ */ #endif /* __WXDEBUG__ */
#ifndef __WXFUNCTION__
/* TODO: add more compilers supporting __FUNCTION__ */ /* TODO: add more compilers supporting __FUNCTION__ */
#if defined(__GNUC__) || \ #if defined(__GNUC__) || \
(defined(_MSC_VER) && _MSC_VER >= 1300) || \ (defined(_MSC_VER) && _MSC_VER >= 1300) || \
@@ -56,6 +57,7 @@
/* still define __WXFUNCTION__ to avoid #ifdefs elsewhere */ /* still define __WXFUNCTION__ to avoid #ifdefs elsewhere */
#define __WXFUNCTION__ (NULL) #define __WXFUNCTION__ (NULL)
#endif #endif
#endif /* __WXFUNCTION__ already defined */
/* ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- */
/* Debugging macros */ /* Debugging macros */