From b737a7deb5161d8b289c4c4bdfa324dccdb07dff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20Vr=C3=A1til?= Date: Mon, 2 Feb 2015 16:32:37 +0100 Subject: Async: remove unused FutureWatchers --- async/src/async.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'async/src') diff --git a/async/src/async.h b/async/src/async.h index a528571..a2a11ac 100644 --- a/async/src/async.h +++ b/async/src/async.h @@ -90,7 +90,6 @@ protected: Executor(ExecutorBase *parent) : ExecutorBase(parent) , mPrevFuture(0) - , mPrevFutureWatcher(0) {} virtual ~Executor() {} inline Async::Future* chainup(); @@ -101,7 +100,6 @@ protected: std::function &)> mFunc; std::function mErrorFunc; Async::Future *mPrevFuture; - Async::FutureWatcher *mPrevFutureWatcher; }; template @@ -110,9 +108,6 @@ class ThenExecutor: public Executor::type, Out, In public: ThenExecutor(ThenTask then, ErrorHandler errorHandler = ErrorHandler(), ExecutorBase *parent = nullptr); void previousFutureReady(); - -private: - Async::FutureWatcher::type> *mFutureWatcher; }; template -- cgit v1.2.3