X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/333e110dab18d80a24f143e3d26103bec255c34f..f7a201b94e6b6160cb1d2b08d56f88941239ca56:/include/wx/debug.h diff --git a/include/wx/debug.h b/include/wx/debug.h index 9c92739aaa..4f4230f6c5 100644 --- a/include/wx/debug.h +++ b/include/wx/debug.h @@ -123,12 +123,13 @@ // Use of wxFalse instead of FALSE suppresses compiler warnings about testing // constant expression WXDLLEXPORT_DATA(extern const bool) wxFalse; +#define wxAssertFailure wxFalse // special form of assert: always triggers it (in debug mode) -#define wxFAIL wxASSERT(wxFalse) +#define wxFAIL wxASSERT(wxAssertFailure) // FAIL with some message -#define wxFAIL_MSG(msg) wxASSERT_MSG(wxFalse, msg) +#define wxFAIL_MSG(msg) wxASSERT_MSG(wxAssertFailure, msg) // NB: the following macros work also in release mode!