summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/common/thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/thread.h b/src/common/thread.h
index 741dce487..2cf74452d 100644
--- a/src/common/thread.h
+++ b/src/common/thread.h
@@ -73,7 +73,7 @@ public:
73private: 73private:
74 std::condition_variable condvar; 74 std::condition_variable condvar;
75 std::mutex mutex; 75 std::mutex mutex;
76 const std::size_t count; 76 std::size_t count;
77 std::size_t waiting = 0; 77 std::size_t waiting = 0;
78 std::size_t generation = 0; // Incremented once each time the barrier is used 78 std::size_t generation = 0; // Incremented once each time the barrier is used
79}; 79};