mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-23 09:20:16 +01:00
Convert all __WXDEBUG__ tests to use new _DEBUG symbol
This symbol is based on the NDEBUG symbol that's automatically defined by CMake.
This commit is contained in:
@@ -706,10 +706,10 @@ void AboutDialog::PopulateInformationPage( ShuttleGui & S )
|
||||
AddBuildinfoRow(&informationStr, XO("Commit Id:"), REV_IDENT );
|
||||
|
||||
auto buildType =
|
||||
#ifdef __WXDEBUG__
|
||||
XO("Debug build")
|
||||
#ifdef _DEBUG
|
||||
XO("Debug build (debug level %d)").Format(wxDEBUG_LEVEL);
|
||||
#else
|
||||
XO("Release build")
|
||||
XO("Release build (debug level %d)").Format(wxDEBUG_LEVEL);
|
||||
#endif
|
||||
;
|
||||
if( (sizeof(void*) == 8) )
|
||||
|
||||
Reference in New Issue
Block a user