Remove BEAST_CATCH_UNHANDLED_EXCEPTIONS

This commit is contained in:
Vinnie Falco
2013-09-09 13:34:18 -07:00
parent d8ea4f9b06
commit 4676db126a
6 changed files with 15 additions and 59 deletions

View File

@@ -332,11 +332,7 @@ bool ThreadPool::runNextJob()
ThreadPoolJob::JobStatus result = ThreadPoolJob::jobHasFinished;
BEAST_TRY
{
result = job->runJob();
}
BEAST_CATCH_ALL_ASSERT
result = job->runJob();
OwnedArray<ThreadPoolJob> deletionList;