std::shared_ptr
[libdcp.git] / src / subtitle_asset_internal.cc
index 7b9e18e90e7aa11b11f296a2e0ef8e11ebc23c59..ae5893de7381e8df7cb127ea744878917d7c905a 100644 (file)
@@ -38,7 +38,7 @@
 
 using std::string;
 using std::map;
-using boost::shared_ptr;
+using std::shared_ptr;
 using namespace dcp;
 
 string
@@ -141,7 +141,7 @@ order::Part::write_xml (xmlpp::Element* parent, order::Context& context) const
 
        parent = as_xml (parent, context);
 
-       BOOST_FOREACH (boost::shared_ptr<order::Part> i, children) {
+       BOOST_FOREACH (std::shared_ptr<order::Part> i, children) {
                i->write_xml (parent, context);
        }
 }