diff options
Diffstat (limited to 'shell/inc/internal')
-rw-r--r-- | shell/inc/internal/dbgmacros.hxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/shell/inc/internal/dbgmacros.hxx b/shell/inc/internal/dbgmacros.hxx index 464bf1952628..0fe72b4aceb2 100644 --- a/shell/inc/internal/dbgmacros.hxx +++ b/shell/inc/internal/dbgmacros.hxx @@ -32,21 +32,13 @@ void DbgAssert(bool condition, const char* message); #if OSL_DEBUG_LEVEL > 0 - #define PRE_CONDITION(x, msg) DbgAssert(x, msg) - #define POST_CONDITION(x, msg) DbgAssert(x, msg) - #define ENSURE(x ,msg) DbgAssert(x, msg) - #else // OSL_DEBUG_LEVEL == 0 - #define PRE_CONDITION(x, msg) ((void)0) - #define POST_CONDITION(x, msg) ((void)0) - #define ENSURE(x, msg) ((void)0) - #endif #endif |