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/image_examiner.h | |
| parent | 0d35820cf50d2789752b8776683b26d04642518d (diff) | |
std::shared_ptr
Diffstat (limited to 'src/lib/image_examiner.h')
| -rw-r--r-- | src/lib/image_examiner.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/image_examiner.h b/src/lib/image_examiner.h index ca8ecf9c8..839e390ed 100644 --- a/src/lib/image_examiner.h +++ b/src/lib/image_examiner.h @@ -25,7 +25,7 @@ class ImageContent; class ImageExaminer : public VideoExaminer { public: - ImageExaminer (boost::shared_ptr<const Film>, boost::shared_ptr<const ImageContent>, boost::shared_ptr<Job>); + ImageExaminer (std::shared_ptr<const Film>, std::shared_ptr<const ImageContent>, std::shared_ptr<Job>); bool has_video () const { return true; @@ -41,8 +41,8 @@ public: } private: - boost::weak_ptr<const Film> _film; - boost::shared_ptr<const ImageContent> _image_content; + std::weak_ptr<const Film> _film; + std::shared_ptr<const ImageContent> _image_content; boost::optional<dcp::Size> _video_size; Frame _video_length; }; |
