From d0a0dbf430a30d3a17d1d0fafae12c9dff9fc460 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 --- modules/beast_core/diagnostic/Throw.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/beast_core/diagnostic/Throw.h b/modules/beast_core/diagnostic/Throw.h index 314c5b1047..e5c86f1b4a 100644 --- a/modules/beast_core/diagnostic/Throw.h +++ b/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; }