Use LeakChecked throughout Beast

This commit is contained in:
Vinnie Falco
2013-06-29 22:59:07 -07:00
parent 386fea5e71
commit ca1eda2df1
104 changed files with 354 additions and 650 deletions

View File

@@ -53,7 +53,9 @@ void ThreadPoolJob::signalJobShouldExit()
}
//==============================================================================
class ThreadPool::ThreadPoolThread : public Thread
class ThreadPool::ThreadPoolThread
: public Thread
, LeakChecked <ThreadPoolThread>
{
public:
ThreadPoolThread (ThreadPool& pool_)
@@ -73,8 +75,6 @@ public:
private:
ThreadPool& pool;
BEAST_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ThreadPoolThread)
};
//==============================================================================