From 751379da4be48f9b911a91cf17686330dd999d0c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 5 Dec 2023 01:59:44 +0100 Subject: Account for split branch in libdcp. --- src/lib/dcp_subtitle.cc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/lib/dcp_subtitle.cc') diff --git a/src/lib/dcp_subtitle.cc b/src/lib/dcp_subtitle.cc index c2c3f7f70..c2d390b55 100644 --- a/src/lib/dcp_subtitle.cc +++ b/src/lib/dcp_subtitle.cc @@ -22,8 +22,8 @@ #include "dcp_subtitle.h" #include "exceptions.h" #include "compose.hpp" -#include -#include +#include +#include #include #include "i18n.h" @@ -35,22 +35,22 @@ using std::string; using std::make_shared; -shared_ptr +shared_ptr DCPSubtitle::load (boost::filesystem::path file) const { - shared_ptr sc; + shared_ptr sc; string interop_error; string smpte_error; try { - sc = make_shared(file); + sc = make_shared(file); } catch (exception& e) { interop_error = e.what (); } if (!sc) { try { - sc = make_shared(file); + sc = make_shared(file); } catch (exception& e) { smpte_error = e.what(); } -- cgit v1.2.3