summaryrefslogtreecommitdiff
path: root/src/lib/hints.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/hints.h')
-rw-r--r--src/lib/hints.h5
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;