From c628ffdfff1b63bb11a3edcc6628dfac2728b2fe Mon Sep 17 00:00:00 2001 From: Ian McInerney Date: Fri, 21 May 2021 01:57:54 +0100 Subject: [PATCH] Don't specify the @def for defines This isn't needed when the comment comes right before the define, and also in newer doxygen versions it causes the __WXDEBUG__ macro to be not documented because it interprets @def __WXDEBUG__ as being the WXDEBUG macro instead. --- interface/wx/debug.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/interface/wx/debug.h b/interface/wx/debug.h index 88489e28e0..7c29d40e03 100644 --- a/interface/wx/debug.h +++ b/interface/wx/debug.h @@ -18,8 +18,6 @@ void wxAbort(); /** - @def wxDEBUG_LEVEL - Preprocessor symbol defining the level of debug support available. This symbol is defined to 1 by default meaning that asserts are compiled in @@ -40,8 +38,6 @@ void wxAbort(); #define wxDEBUG_LEVEL /** - @def __WXDEBUG__ - Compatibility macro indicating presence of debug support. This symbol is defined if wxDEBUG_LEVEL is greater than 0 and undefined @@ -275,8 +271,6 @@ typedef void (*wxAssertHandler_t)(const wxString& file, void wxDisableAsserts(); /** - @def wxDISABLE_ASSERTS_IN_RELEASE_BUILD - Use this macro to disable asserts in release build when not using wxIMPLEMENT_APP().