summaryrefslogtreecommitdiff
path: root/shell/inc/internal
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
commit28fe6c99552c3dfb533b1ddf63e524fc6f8b4ebd (patch)
treeab161ab3a1a54bd562a9156cb3c7526c89f3ba39 /shell/inc/internal
parent6c59ac1eebc19429a201dec2df8a1e28c3ff98ce (diff)
Remove double line spacing.
Diffstat (limited to 'shell/inc/internal')
-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 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