From 4aef8dd81aeb7698aae314c5fe8fc35016d3502b Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 7 May 2026 14:35:30 +0200 Subject: Use std::atomic rather than boost::atomic. It's in C++11. --- src/lib/hints.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/hints.h') diff --git a/src/lib/hints.h b/src/lib/hints.h index b17da2c99..78cc615d3 100644 --- a/src/lib/hints.h +++ b/src/lib/hints.h @@ -26,8 +26,8 @@ #include "signaller.h" #include "text_type.h" #include "weak_film.h" -#include #include +#include #include #include @@ -111,7 +111,7 @@ private: bool _very_long_subtitle = false; boost::optional _last_subtitle; - boost::atomic _stop; + std::atomic _stop; bool _disable_audio_analysis = false; }; -- cgit v1.2.3