diff options
Diffstat (limited to 'async/src/async.cpp')
-rw-r--r-- | async/src/async.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/async/src/async.cpp b/async/src/async.cpp index 20ba4e6..5e26bd8 100644 --- a/async/src/async.cpp +++ b/async/src/async.cpp | |||
@@ -26,15 +26,11 @@ using namespace Async; | |||
26 | 26 | ||
27 | Private::ExecutorBase::ExecutorBase(const ExecutorBasePtr &parent) | 27 | Private::ExecutorBase::ExecutorBase(const ExecutorBasePtr &parent) |
28 | : mPrev(parent) | 28 | : mPrev(parent) |
29 | , mResult(0) | ||
30 | , mIsRunning(false) | ||
31 | , mIsFinished(false) | ||
32 | { | 29 | { |
33 | } | 30 | } |
34 | 31 | ||
35 | Private::ExecutorBase::~ExecutorBase() | 32 | Private::ExecutorBase::~ExecutorBase() |
36 | { | 33 | { |
37 | delete mResult; | ||
38 | } | 34 | } |
39 | 35 | ||
40 | 36 | ||