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:
parent
fa3bd1aaea
commit
986d27c395
@ -47,15 +47,17 @@
|
||||
#endif /* !WXDEBUG */
|
||||
#endif /* __WXDEBUG__ */
|
||||
|
||||
/* TODO: add more compilers supporting __FUNCTION__ */
|
||||
#if defined(__GNUC__) || \
|
||||
(defined(_MSC_VER) && _MSC_VER >= 1300) || \
|
||||
defined(__FUNCTION__)
|
||||
#define __WXFUNCTION__ __FUNCTION__
|
||||
#else
|
||||
/* still define __WXFUNCTION__ to avoid #ifdefs elsewhere */
|
||||
#define __WXFUNCTION__ (NULL)
|
||||
#endif
|
||||
#ifndef __WXFUNCTION__
|
||||
/* TODO: add more compilers supporting __FUNCTION__ */
|
||||
#if defined(__GNUC__) || \
|
||||
(defined(_MSC_VER) && _MSC_VER >= 1300) || \
|
||||
defined(__FUNCTION__)
|
||||
#define __WXFUNCTION__ __FUNCTION__
|
||||
#else
|
||||
/* still define __WXFUNCTION__ to avoid #ifdefs elsewhere */
|
||||
#define __WXFUNCTION__ (NULL)
|
||||
#endif
|
||||
#endif /* __WXFUNCTION__ already defined */
|
||||
|
||||
/* ---------------------------------------------------------------------------- */
|
||||
/* Debugging macros */
|
||||
|
Loading…
Reference in New Issue
Block a user