std::shared_ptr
[dcpomatic.git] / src / lib / image.cc
index fb9efdf8926a1c0791e5bf8229a5ad5647720838..a31874e18e8531b5a86414a417d29d1ac01f73c6 100644 (file)
@@ -52,7 +52,7 @@ using std::cout;
 using std::cerr;
 using std::list;
 using std::runtime_error;
-using boost::shared_ptr;
+using std::shared_ptr;
 using dcp::Size;
 
 
@@ -952,7 +952,7 @@ Image::allocate ()
 }
 
 Image::Image (Image const & other)
-       : boost::enable_shared_from_this<Image>(other)
+       : std::enable_shared_from_this<Image>(other)
        , _size (other._size)
        , _pixel_format (other._pixel_format)
        , _aligned (other._aligned)