From 9aca3cb21cd5001c5c7fae855ccb6572e9f0dedf Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Sun, 29 Sep 2013 08:53:50 -0700 Subject: [PATCH] Don't break on Throw --- src/beast/modules/beast_core/diagnostic/Throw.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/beast/modules/beast_core/diagnostic/Throw.h b/src/beast/modules/beast_core/diagnostic/Throw.h index 314c5b1047..e5c86f1b4a 100644 --- a/src/beast/modules/beast_core/diagnostic/Throw.h +++ b/src/beast/modules/beast_core/diagnostic/Throw.h @@ -31,10 +31,8 @@ extern void breakPoint (); }; template -inline void Throw (Exception const& e, char const* = "", int = 0) +void Throw (Exception const& e, char const* = "", int = 0) { - Debug::breakPoint (); - throw e; }