diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/Exceptions.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |