diff options
Diffstat (limited to 'include/threadengine.h')
-rw-r--r-- | include/threadengine.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/threadengine.h b/include/threadengine.h index 14af252e6..e45987e26 100644 --- a/include/threadengine.h +++ b/include/threadengine.h @@ -19,16 +19,12 @@ class CoreExport Thread : public Pipe, public Extensible { private: /* Set to true to tell the thread to finish and we are waiting for it */ - bool exit; + bool exit = false; public: /* Handle for this thread */ pthread_t handle; - /** Threads constructor - */ - Thread(); - /** Threads destructor */ virtual ~Thread(); |