summaryrefslogtreecommitdiff
path: root/include/threadengines
diff options
context:
space:
mode:
Diffstat (limited to 'include/threadengines')
-rw-r--r--include/threadengines/threadengine_pthread.h3
-rw-r--r--include/threadengines/threadengine_win32.h3
2 files changed, 2 insertions, 4 deletions
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h
index 79b00e629..4952ea3e8 100644
--- a/include/threadengines/threadengine_pthread.h
+++ b/include/threadengines/threadengine_pthread.h
@@ -18,7 +18,6 @@
#include "inspircd_config.h"
#include "base.h"
-class InspIRCd;
class Thread;
/** The ThreadEngine class has the responsibility of initialising
@@ -38,7 +37,7 @@ class CoreExport ThreadEngine
/** Constructor.
* @param Instance Creator object
*/
- ThreadEngine(InspIRCd* Instance);
+ ThreadEngine();
/** Destructor
*/
diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h
index 64ad87ab8..a88a0c815 100644
--- a/include/threadengines/threadengine_win32.h
+++ b/include/threadengines/threadengine_win32.h
@@ -17,7 +17,6 @@
#include "inspircd_config.h"
#include "base.h"
-class InspIRCd;
class Thread;
/** The ThreadEngine class has the responsibility of initialising
@@ -34,7 +33,7 @@ class CoreExport ThreadEngine
{
public:
- ThreadEngine(InspIRCd* Instance);
+ ThreadEngine();
virtual ~ThreadEngine();