From 45d998979c51a2985255da1aff7f159d25dedacc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 13 May 2017 19:10:05 +0200 Subject: [PATCH] CHECK_WRONG_DATA: switch to debug macro --- lib/check.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/check.h b/lib/check.h index eb016200c..59d4755ce 100644 --- a/lib/check.h +++ b/lib/check.h @@ -35,8 +35,8 @@ * Using this macro we can make sure that released binaries don't crash/hang but the problem is not hidden * in debug builds. */ -#define CHECK_WRONG_DATA(X) (X) // Release (don't crash/hang) -//#define CHECK_WRONG_DATA(X) (1) // Debug (crash/hang) +//#define CHECK_WRONG_DATA(X) (X) // Release (don't crash/hang) +#define CHECK_WRONG_DATA(X) (1) // Debug (crash/hang) namespace tinyxml2 { class XMLElement;