summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-07-31 15:41:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-07-31 15:41:28 +0200
commit0522251d5bf21185b907acb068619dbfc3ac4684 (patch)
treeaa4eeeed521d8fc7ac1f052017d29fa8517daf66
parent7d13fe52bdb31d1263148567fec009df1de6e330 (diff)
more fix windows --enable-debug build
follow on to commit cba7acca97ac0245b93e27ba46351285fd7c5ff2 fix windows --enable-debug build which tried to fix the regression from commit 9cceba9a928cf3b3447f293020be2fe76c035ed5 make DBG_TESTSOLARMUTEX available in assert builds Change-Id: I054552a53fd86a9b6cefcdad055f1f870c47e07c
-rw-r--r--vcl/source/app/dbggui.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx
index c136c6c266a1..1f8db580f978 100644
--- a/vcl/source/app/dbggui.cxx
+++ b/vcl/source/app/dbggui.cxx
@@ -19,7 +19,7 @@
#include <sal/config.h>
-#ifdef DBG_UTIL
+#ifndef NDEBUG
#include <limits.h>
@@ -57,6 +57,6 @@ void DbgGUIDeInitSolarMutexCheck()
DbgSetTestSolarMutex( nullptr );
}
-#endif // DBG_UTIL
+#endif // NDEBUG
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */