diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-09 16:23:36 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-09 17:38:02 +0000 |
commit | 82f02d7248f5959409a9a90f936649d602905067 (patch) | |
tree | 4d0770429e8f3fb22fabcd6ffafcd2b37368bcc5 /include/basebmp/bitmapdevice.hxx | |
parent | 31498259bb801dee7bb2d7cb2b40162876116aa4 (diff) |
boost::scoped_ptr->std::unique_ptr
Change-Id: I844532d08123ed0c91ccec73cc806277fd821089
Diffstat (limited to 'include/basebmp/bitmapdevice.hxx')
-rw-r--r-- | include/basebmp/bitmapdevice.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/basebmp/bitmapdevice.hxx b/include/basebmp/bitmapdevice.hxx index 600eabe548ff..48c6d474c809 100644 --- a/include/basebmp/bitmapdevice.hxx +++ b/include/basebmp/bitmapdevice.hxx @@ -25,11 +25,11 @@ #include <basebmp/scanlineformats.hxx> #include <basebmp/basebmpdllapi.h> -#include <boost/scoped_ptr.hpp> #include <boost/shared_ptr.hpp> #include <boost/shared_array.hpp> #include <boost/enable_shared_from_this.hpp> #include <boost/noncopyable.hpp> +#include <memory> #include <vector> namespace basegfx @@ -656,7 +656,7 @@ private: BitmapDeviceSharedPtr getGenericRenderer() const; - boost::scoped_ptr< ImplBitmapDevice > mpImpl; + std::unique_ptr< ImplBitmapDevice > mpImpl; }; /** Function to create a BitmapDevice for given scanline format |