From 52b928b4901aa11b00888ce6880de1c64debf426 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 1 Sep 2015 11:22:18 +0100 Subject: Hack to remove boost atomic dependency. --- src/lib/encoder.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib') diff --git a/src/lib/encoder.h b/src/lib/encoder.h index b255a617f..caadda591 100644 --- a/src/lib/encoder.h +++ b/src/lib/encoder.h @@ -33,7 +33,6 @@ #include #include #include -#include #include #include @@ -96,7 +95,8 @@ private: bool _left_done; bool _right_done; - boost::atomic _terminate; + /* XXX: probably should be atomic */ + bool _terminate; /** Mutex for _threads */ mutable boost::mutex _threads_mutex; std::list _threads; -- cgit v1.2.3