summaryrefslogtreecommitdiff
path: root/package/source
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2017-01-16 19:47:20 +0100
committerJochen Nitschke <j.nitschke+logerrit@ok.de>2017-01-17 20:24:17 +0000
commite87071ac57a7711078715d9165c264ec3db180ab (patch)
tree6a2c5a62f7fb3f162d1f9e7caf44e6846468532a /package/source
parentd0f3363aa8db533ba6fe356053caaf79a1507d14 (diff)
replace boost::checked_deleter with std::default_delete
and remove all traces of boost/checked_delete.hpp Change-Id: I4486d0e07a7197d75f8739c8c6d79670163eaab2 Reviewed-on: https://gerrit.libreoffice.org/33182 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Jochen Nitschke <j.nitschke+logerrit@ok.de>
Diffstat (limited to 'package/source')
-rw-r--r--package/source/xstor/xstorage.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx
index 68f47a89db85..21ac47d5c150 100644
--- a/package/source/xstor/xstorage.cxx
+++ b/package/source/xstor/xstorage.cxx
@@ -57,8 +57,6 @@
#include "switchpersistencestream.hxx"
#include "ohierarchyholder.hxx"
-#include <boost/checked_delete.hpp>
-
using namespace ::com::sun::star;
#if OSL_DEBUG_LEVEL > 0
@@ -337,10 +335,10 @@ OStorage_Impl::~OStorage_Impl()
m_pParent = nullptr;
}
- std::for_each(m_aChildrenList.begin(), m_aChildrenList.end(), boost::checked_deleter<SotElement_Impl>());
+ std::for_each(m_aChildrenList.begin(), m_aChildrenList.end(), std::default_delete<SotElement_Impl>());
m_aChildrenList.clear();
- std::for_each(m_aDeletedList.begin(), m_aDeletedList.end(), boost::checked_deleter<SotElement_Impl>());
+ std::for_each(m_aDeletedList.begin(), m_aDeletedList.end(), std::default_delete<SotElement_Impl>());
m_aDeletedList.clear();
if ( m_nStorageType == embed::StorageFormats::OFOPXML && m_pRelStorElement )