From 6a83f9141bfc04e66d66fa02fa0f5f74d18fe38a Mon Sep 17 00:00:00 2001 From: glx Date: Sun, 9 Dec 2007 21:20:21 +0000 Subject: (svn r11611) -Codechange: it is now possible to use a define to enable asserts and show them in crash.log for MSVC release builds --- src/driver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/driver.h') diff --git a/src/driver.h b/src/driver.h index c05bfd2f8..640fc9c21 100644 --- a/src/driver.h +++ b/src/driver.h @@ -79,7 +79,7 @@ protected: strecpy(buf, GetDriverTypeName(type), lastof(buf)); strecpy(buf + 5, name, lastof(buf)); -#if !defined(NDEBUG) +#if !defined(NDEBUG) || defined(WITH_ASSERT) /* NDEBUG disables asserts and gives a warning: unused variable 'P' */ std::pair P = #endif /* !NDEBUG */ -- cgit v1.2.3-54-g00ecf