summaryrefslogtreecommitdiffstats
path: root/async/src/future.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'async/src/future.cpp')
-rw-r--r--async/src/future.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/async/src/future.cpp b/async/src/future.cpp
index 48c7417..dcbec32 100644
--- a/async/src/future.cpp
+++ b/async/src/future.cpp
@@ -25,13 +25,11 @@ using namespace Async;
25 25
26FutureBase::FutureBase() 26FutureBase::FutureBase()
27 : mFinished(false) 27 : mFinished(false)
28 , mWaitLoop(nullptr)
29{ 28{
30} 29}
31 30
32FutureBase::FutureBase(const Async::FutureBase &other) 31FutureBase::FutureBase(const Async::FutureBase &other)
33 : mFinished(other.mFinished) 32 : mFinished(other.mFinished)
34 , mWaitLoop(other.mWaitLoop)
35{ 33{
36} 34}
37 35