Don't break on Throw

This commit is contained in:
Vinnie Falco
2013-09-29 08:53:50 -07:00
parent d1f589835c
commit 9aca3cb21c

View File

@@ -31,10 +31,8 @@ extern void breakPoint ();
};
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;
}