summaryrefslogtreecommitdiffstats
path: root/async/src/async.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'async/src/async.cpp')
-rw-r--r--async/src/async.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/async/src/async.cpp b/async/src/async.cpp
index c9fedc7..6eefd1b 100644
--- a/async/src/async.cpp
+++ b/async/src/async.cpp
@@ -27,6 +27,8 @@ using namespace Async;
27Private::ExecutorBase::ExecutorBase(const ExecutorBasePtr &parent) 27Private::ExecutorBase::ExecutorBase(const ExecutorBasePtr &parent)
28 : mPrev(parent) 28 : mPrev(parent)
29 , mResult(0) 29 , mResult(0)
30 , mIsRunning(false)
31 , mIsFinished(false)
30{ 32{
31} 33}
32 34