summaryrefslogtreecommitdiff
path: root/src/lib/j2k_encoder.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-02-19 21:55:04 +0100
committerCarl Hetherington <cth@carlh.net>2020-02-19 21:55:04 +0100
commit5b1b70c86df7225a2a102bdde3b38ea591a6dcbb (patch)
treee118fb861d57ca74d25c45dda8b09dc09c8db0c5 /src/lib/j2k_encoder.h
parent0b15f493754d1b630338b17f2a6dfc66ccc4f6b7 (diff)
Can't put boost::thread in a std::list with our macOS compiler.
Diffstat (limited to 'src/lib/j2k_encoder.h')
-rw-r--r--src/lib/j2k_encoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/j2k_encoder.h b/src/lib/j2k_encoder.h
index b57c4df7e..b4542c40a 100644
--- a/src/lib/j2k_encoder.h
+++ b/src/lib/j2k_encoder.h
@@ -89,7 +89,7 @@ private:
/** Mutex for _threads */
mutable boost::mutex _threads_mutex;
- std::list<boost::thread> _threads;
+ std::list<boost::thread*> _threads;
mutable boost::mutex _queue_mutex;
std::list<boost::shared_ptr<DCPVideo> > _queue;
/** condition to manage thread wakeups when we have nothing to do */