CHECK_WRONG_DATA: switch to debug macro

This commit is contained in:
Daniel Marjamäki 2017-05-13 19:10:05 +02:00
parent 55cd69e290
commit 45d998979c
1 changed files with 2 additions and 2 deletions

View File

@ -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;