From 64a6a87dd4a3fd43665242b8a8b2b35a675a7839 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 8 Jul 2018 00:54:04 +0100 Subject: Fix build with shared_ptr dcp::Subtitle and subclasses. --- src/lib/dcp_subtitle_decoder.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib/dcp_subtitle_decoder.h') diff --git a/src/lib/dcp_subtitle_decoder.h b/src/lib/dcp_subtitle_decoder.h index 359d19145..0756a278f 100644 --- a/src/lib/dcp_subtitle_decoder.h +++ b/src/lib/dcp_subtitle_decoder.h @@ -32,8 +32,8 @@ public: void seek (ContentTime time, bool accurate); private: - ContentTimePeriod content_time_period (dcp::SubtitleString s) const; + ContentTimePeriod content_time_period (boost::shared_ptr s) const; - std::list _subtitles; - std::list::const_iterator _next; + std::list > _subtitles; + std::list >::const_iterator _next; }; -- cgit v1.2.3