diff options
Diffstat (limited to 'src/lib/atmos_mxf_content.cc')
| -rw-r--r-- | src/lib/atmos_mxf_content.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/lib/atmos_mxf_content.cc b/src/lib/atmos_mxf_content.cc index 870fca56e..f8cc05178 100644 --- a/src/lib/atmos_mxf_content.cc +++ b/src/lib/atmos_mxf_content.cc @@ -25,14 +25,12 @@ #include <dcp/atmos_asset.h> #include <dcp/exceptions.h> #include <libxml++/libxml++.h> -#include <boost/make_shared.hpp> #include "i18n.h" using std::list; using std::string; using boost::shared_ptr; -using boost::make_shared; AtmosMXFContent::AtmosMXFContent (shared_ptr<const Film> film, boost::filesystem::path path) : Content (film, path) @@ -50,7 +48,7 @@ bool AtmosMXFContent::valid_mxf (boost::filesystem::path path) { try { - shared_ptr<dcp::AtmosAsset> a = make_shared<dcp::AtmosAsset> (path); + shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path)); return true; } catch (dcp::MXFFileError& e) { @@ -66,7 +64,7 @@ AtmosMXFContent::examine (shared_ptr<Job> job) { job->set_progress_unknown (); Content::examine (job); - shared_ptr<dcp::AtmosAsset> a = make_shared<dcp::AtmosAsset> (path(0)); + shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path(0))); { boost::mutex::scoped_lock lm (_mutex); |
