diff options
Diffstat (limited to 'includes')
-rw-r--r-- | includes/LuaTask.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/includes/LuaTask.h b/includes/LuaTask.h index 5058578..0d763de 100644 --- a/includes/LuaTask.h +++ b/includes/LuaTask.h @@ -11,7 +11,7 @@ class LuaMainTask; class LuaExecCell { public: - LuaExecCell() : m_detached(false) { } + LuaExecCell(); void detach() { m_detached = true; } void exec(LuaMainTask * mainTask); protected: @@ -61,7 +61,6 @@ class LuaMainTask : public Task { virtual void Do(); Lua L; TQueue<LuaExecCell> m_queue; - volatile bool m_stopping; friend class LuaExecCell; }; |