summaryrefslogtreecommitdiff
path: root/canvas/source/directx/dx_bitmapprovider.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'canvas/source/directx/dx_bitmapprovider.hxx')
-rw-r--r--canvas/source/directx/dx_bitmapprovider.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/canvas/source/directx/dx_bitmapprovider.hxx b/canvas/source/directx/dx_bitmapprovider.hxx
index 1c9ae8f839c6..f363f91b694e 100644
--- a/canvas/source/directx/dx_bitmapprovider.hxx
+++ b/canvas/source/directx/dx_bitmapprovider.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_CANVAS_SOURCE_DIRECTX_DX_BITMAPPROVIDER_HXX
#include "dx_ibitmap.hxx"
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace dxcanvas
{
@@ -31,7 +31,7 @@ namespace dxcanvas
virtual IBitmapSharedPtr getBitmap() const = 0;
};
- typedef boost::shared_ptr<BitmapProvider> BitmapProviderSharedPtr;
+ typedef std::shared_ptr<BitmapProvider> BitmapProviderSharedPtr;
}
#endif