diff options
Diffstat (limited to 'zen/thread.h')
-rw-r--r-- | zen/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/thread.h b/zen/thread.h index 42fba281..abdc6da0 100644 --- a/zen/thread.h +++ b/zen/thread.h @@ -445,7 +445,7 @@ private: activeCondition_ = cv; } - std::atomic<bool> stopRequested_{false}; //std:atomic is uninitialized by default!!! + std::atomic<bool> stopRequested_{false}; //std::atomic is uninitialized by default!!! //"The default constructor is trivial: no initialization takes place other than zero initialization of static and thread-local objects." std::condition_variable* activeCondition_ = nullptr; |