summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-31 00:39:18 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-31 09:48:39 +0100
commit0ad7b154f93b18a4dfe55ecb96e4ff49dc1d28fb (patch)
tree7bd8490653cf02e5627e50d5b50afca1a4bee0b4 /shell
parent723328ae4dc93a9dacf8df0e6bc66b9cbd2c78aa (diff)
Remove double line spacing.
Diffstat (limited to 'shell')
-rw-r--r--shell/inc/internal/dbgmacros.hxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/shell/inc/internal/dbgmacros.hxx b/shell/inc/internal/dbgmacros.hxx
index eba501d552..b9d0795237 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