From d39880eef211a296fa8ef4712cdef5945d08527c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 20 Dec 2020 14:14:07 +0100 Subject: std::shared_ptr --- src/cpl.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cpl.cc') diff --git a/src/cpl.cc b/src/cpl.cc index 81fe1fc2..8e87283d 100644 --- a/src/cpl.cc +++ b/src/cpl.cc @@ -59,9 +59,9 @@ using std::make_pair; using std::cout; using std::set; using std::vector; -using boost::shared_ptr; +using std::shared_ptr; using boost::optional; -using boost::dynamic_pointer_cast; +using std::dynamic_pointer_cast; using namespace dcp; @@ -156,7 +156,7 @@ CPL::CPL (boost::filesystem::path file) * @param reel Reel to add. */ void -CPL::add (boost::shared_ptr reel) +CPL::add (std::shared_ptr reel) { _reels.push_back (reel); } -- cgit v1.2.3