diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-14 09:21:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-14 12:54:25 +0000 |
commit | 22b80ac8e213ff63ce4f60e7d491f12cb42db313 (patch) | |
tree | b00f1ed362747a05d79686a8709c3408cfdee59b /cppcanvas/source/inc | |
parent | d8026ad65c8d50868f0f2fc0d2bd95820cddea83 (diff) |
boost->std
Change-Id: I3fd9e1599c5ad812879a58cf1dabbcd393105e1c
Reviewed-on: https://gerrit.libreoffice.org/18564
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'cppcanvas/source/inc')
-rw-r--r-- | cppcanvas/source/inc/action.hxx | 5 | ||||
-rw-r--r-- | cppcanvas/source/inc/implrenderer.hxx | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/cppcanvas/source/inc/action.hxx b/cppcanvas/source/inc/action.hxx index c47bb29e6c20..aa63ffce01bd 100644 --- a/cppcanvas/source/inc/action.hxx +++ b/cppcanvas/source/inc/action.hxx @@ -21,8 +21,7 @@ #define INCLUDED_CPPCANVAS_SOURCE_INC_ACTION_HXX #include <sal/types.h> - -#include <boost/shared_ptr.hpp> +#include <memory> namespace basegfx { @@ -146,7 +145,7 @@ namespace cppcanvas virtual sal_Int32 getActionCount() const = 0; }; - typedef ::boost::shared_ptr< Action > ActionSharedPtr; + typedef std::shared_ptr< Action > ActionSharedPtr; } } diff --git a/cppcanvas/source/inc/implrenderer.hxx b/cppcanvas/source/inc/implrenderer.hxx index 6c627282d43f..dbf205ddf749 100644 --- a/cppcanvas/source/inc/implrenderer.hxx +++ b/cppcanvas/source/inc/implrenderer.hxx @@ -21,8 +21,6 @@ #define INCLUDED_CPPCANVAS_SOURCE_INC_IMPLRENDERER_HXX #include <sal/types.h> - -#include <boost/shared_ptr.hpp> #include <cppcanvas/renderer.hxx> #include <cppcanvas/canvas.hxx> |