summaryrefslogtreecommitdiff
path: root/src/lib/atmos_mxf_content.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-06-21 01:14:06 +0100
committerCarl Hetherington <cth@carlh.net>2016-06-21 01:14:06 +0100
commit5a5324ed3a381a86dfe0a6e3932c1d58fdcd596f (patch)
tree769dca1358e35017ce5a5b3ab2dfafe2b24d61ed /src/lib/atmos_mxf_content.cc
parent4e83acad0c2a5c528709a175a80261b8147d3b49 (diff)
Use make_shared<>.
Diffstat (limited to 'src/lib/atmos_mxf_content.cc')
-rw-r--r--src/lib/atmos_mxf_content.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/atmos_mxf_content.cc b/src/lib/atmos_mxf_content.cc
index f8cc05178..870fca56e 100644
--- a/src/lib/atmos_mxf_content.cc
+++ b/src/lib/atmos_mxf_content.cc
@@ -25,12 +25,14 @@
#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)
@@ -48,7 +50,7 @@ bool
AtmosMXFContent::valid_mxf (boost::filesystem::path path)
{
try {
- shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path));
+ shared_ptr<dcp::AtmosAsset> a = make_shared<dcp::AtmosAsset> (path);
return true;
} catch (dcp::MXFFileError& e) {
@@ -64,7 +66,7 @@ AtmosMXFContent::examine (shared_ptr<Job> job)
{
job->set_progress_unknown ();
Content::examine (job);
- shared_ptr<dcp::AtmosAsset> a (new dcp::AtmosAsset (path(0)));
+ shared_ptr<dcp::AtmosAsset> a = make_shared<dcp::AtmosAsset> (path(0));
{
boost::mutex::scoped_lock lm (_mutex);