summaryrefslogtreecommitdiff
path: root/src/threadengines/threadengine_win32.cpp
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-24 12:40:02 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-24 12:40:02 +0200
commitaa7df4b8234d4b601ad0310605181fdabc8cfcaa (patch)
treea7ff42a5ad7081762c10ffc81b5ba7ebd7f4dc08 /src/threadengines/threadengine_win32.cpp
parentee08a00d1ba447072484f96c445e985f15f48e49 (diff)
Remove empty ThreadEngine constructors and destructors
Diffstat (limited to 'src/threadengines/threadengine_win32.cpp')
-rw-r--r--src/threadengines/threadengine_win32.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/threadengines/threadengine_win32.cpp b/src/threadengines/threadengine_win32.cpp
index c3a844a74..77f638f37 100644
--- a/src/threadengines/threadengine_win32.cpp
+++ b/src/threadengines/threadengine_win32.cpp
@@ -21,10 +21,6 @@
#include "inspircd.h"
#include "threadengines/threadengine_win32.h"
-ThreadEngine::ThreadEngine()
-{
-}
-
void ThreadEngine::Start(Thread* thread)
{
ThreadData* data = new ThreadData;
@@ -44,10 +40,6 @@ void ThreadEngine::Start(Thread* thread)
}
}
-ThreadEngine::~ThreadEngine()
-{
-}
-
DWORD WINAPI ThreadEngine::Entry(void* parameter)
{
Thread* pt = static_cast<Thread*>(parameter);