Don't break on Throw

This commit is contained in:
Vinnie Falco
2013-09-29 08:53:50 -07:00
parent 0e46762962
commit d0a0dbf430

View File

@@ -31,10 +31,8 @@ extern void breakPoint ();
}; };
template <class Exception> template <class Exception>
inline void Throw (Exception const& e, char const* = "", int = 0) void Throw (Exception const& e, char const* = "", int = 0)
{ {
Debug::breakPoint ();
throw e; throw e;
} }