summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-22 03:47:06 +0100
committerLioncash <mathew1800@gmail.com>2018-11-22 03:47:08 +0100
commit93f7677402e8350843566c714d119f1ab669f2a0 (patch)
treea2a89ba90622dabbb0d5b6466f986dbb72f05f66
parentcommon/thread: Initialize class member variables where applicable (diff)
downloadyuzu-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 '')
-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:
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
};