diff options
author | Lioncash <mathew1800@gmail.com> | 2018-11-22 03:47:06 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-11-22 03:47:08 +0100 |
commit | 93f7677402e8350843566c714d119f1ab669f2a0 (patch) | |
tree | a2a89ba90622dabbb0d5b6466f986dbb72f05f66 /src/common | |
parent | common/thread: Initialize class member variables where applicable (diff) | |
download | yuzu-93f7677402e8350843566c714d119f1ab669f2a0.tar yuzu-93f7677402e8350843566c714d119f1ab669f2a0.tar.gz yuzu-93f7677402e8350843566c714d119f1ab669f2a0.tar.bz2 yuzu-93f7677402e8350843566c714d119f1ab669f2a0.tar.lz yuzu-93f7677402e8350843566c714d119f1ab669f2a0.tar.xz yuzu-93f7677402e8350843566c714d119f1ab669f2a0.tar.zst yuzu-93f7677402e8350843566c714d119f1ab669f2a0.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/thread.h | 2 |
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: private: std::condition_variable condvar; std::mutex mutex; - const std::size_t count; + std::size_t count; std::size_t waiting = 0; std::size_t generation = 0; // Incremented once each time the barrier is used }; |