From 519d57deadc46bd5b48b37cd1a28882425d8e204 Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Sat, 7 Jun 2014 17:17:52 -0700 Subject: Fixing DEBUG vs _DEBUG #defines. --- includes/Exceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/Exceptions.h') diff --git a/includes/Exceptions.h b/includes/Exceptions.h index 2b20e1e..f68239f 100644 --- a/includes/Exceptions.h +++ b/includes/Exceptions.h @@ -98,7 +98,7 @@ static inline void * realloc(void * previous, size_t size) { }; static inline void AssertHelperInner(const String & msg, const char * details = NULL) throw (GeneralException) { -#if defined(_MSC_VER) && defined(DEBUG) +#if defined(_MSC_VER) && defined(_DEBUG) __debugbreak(); #endif throw GeneralException(msg, details); -- cgit v1.2.3