From c83a8a951cce9b7ed541c293993f708f720bf28d Mon Sep 17 00:00:00 2001 From: "Nicolas \"Pixel\" Noble" Date: Thu, 19 Jun 2014 15:38:02 -0700 Subject: Finishing up basic curl integration and adding a basic DownloadTask. --- includes/Exceptions.h | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'includes/Exceptions.h') diff --git a/includes/Exceptions.h b/includes/Exceptions.h index 1c66968..11d0d7b 100644 --- a/includes/Exceptions.h +++ b/includes/Exceptions.h @@ -97,15 +97,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 (IsDebuggerPresent()) - __debugbreak(); - else -#endif - throw GeneralException(msg, details); -} - +void AssertHelperInner(const String & msg, const char * details = NULL) throw (GeneralException); static inline void AssertHelper(const String & msg, const char * fmt, ...) printfwarning(2, 3); static inline void AssertHelper(const String & msg, const char * fmt, ...) { -- cgit v1.2.3