diff options
Diffstat (limited to 'async/src/future.cpp')
-rw-r--r-- | async/src/future.cpp | 2 |
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 | ||
26 | FutureBase::FutureBase() | 26 | FutureBase::FutureBase() |
27 | : mFinished(false) | 27 | : mFinished(false) |
28 | , mWaitLoop(nullptr) | ||
29 | { | 28 | { |
30 | } | 29 | } |
31 | 30 | ||
32 | FutureBase::FutureBase(const Async::FutureBase &other) | 31 | FutureBase::FutureBase(const Async::FutureBase &other) |
33 | : mFinished(other.mFinished) | 32 | : mFinished(other.mFinished) |
34 | , mWaitLoop(other.mWaitLoop) | ||
35 | { | 33 | { |
36 | } | 34 | } |
37 | 35 | ||