Remove unhandled exception catcher

This commit is contained in:
Vinnie Falco
2013-10-01 12:00:53 -07:00
parent 2472a902dd
commit c67929ea39
8 changed files with 1 additions and 40 deletions

View File

@@ -99,7 +99,7 @@ void Thread::threadEntryPoint()
// used to wrap the incoming call from the platform-specific code
void BEAST_API beast_threadEntryPoint (void* userData)
{
ProtectedCall (&Thread::threadEntryPoint, static_cast <Thread*> (userData));
static_cast <Thread*> (userData)->threadEntryPoint();
}
//==============================================================================