diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-01-04 21:16:53 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-01-07 22:48:29 +0100 |
| commit | dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 (patch) | |
| tree | e56a3f82fb9e1c8602f265bea0d0688d8a018644 /src/lib/hints.h | |
| parent | 0d35820cf50d2789752b8776683b26d04642518d (diff) | |
std::shared_ptr
Diffstat (limited to 'src/lib/hints.h')
| -rw-r--r-- | src/lib/hints.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib/hints.h b/src/lib/hints.h index 9164e2106..d070dc201 100644 --- a/src/lib/hints.h +++ b/src/lib/hints.h @@ -24,7 +24,6 @@ #include "dcp_text_track.h" #include "dcpomatic_time.h" #include "weak_film.h" -#include <boost/weak_ptr.hpp> #include <boost/signals2.hpp> #include <boost/atomic.hpp> #include <vector> @@ -38,7 +37,7 @@ class Writer; class Hints : public Signaller, public ExceptionStore, public WeakConstFilm { public: - explicit Hints (boost::weak_ptr<const Film> film); + explicit Hints (std::weak_ptr<const Film> film); ~Hints (); void start (); @@ -78,7 +77,7 @@ private: * our final DCP will have. This means we can see how big the files will be and warn if they * will be too big. */ - boost::shared_ptr<Writer> _writer; + std::shared_ptr<Writer> _writer; bool _long_ccap; bool _overlap_ccap; |
