C++11 tidying.
[dcpomatic.git] / src / lib / atmos_content.cc
index 0543437a30ca06e7a44ea6a3fbf0249fec2d96ab..cc74209e0ee8abc4f2a51fd30afca91cda0b2313 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -27,8 +27,9 @@ DCPOMATIC_DISABLE_WARNINGS
 DCPOMATIC_ENABLE_WARNINGS
 
 
+using std::make_shared;
 using std::string;
-using boost::shared_ptr;
+using std::shared_ptr;
 
 
 int const AtmosContentProperty::EDIT_RATE = 700;
@@ -54,10 +55,10 @@ shared_ptr<AtmosContent>
 AtmosContent::from_xml (Content* parent, cxml::ConstNodePtr node)
 {
        if (!node->optional_node_child("AtmosLength")) {
-               return shared_ptr<AtmosContent>();
+               return {};
        }
 
-       return shared_ptr<AtmosContent> (new AtmosContent(parent, node));
+       return make_shared<AtmosContent>(parent, node);
 }