summaryrefslogtreecommitdiff
path: root/unoxml/source/xpath/nodelist.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-09-17 09:21:43 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-09-17 11:00:51 +0100
commiteaf2c278888ebca0ac99055ee34df6f011da3596 (patch)
tree3177ca36a5eeac09b791ded9fc55d2d82e52c9cd /unoxml/source/xpath/nodelist.hxx
parent498cb0b3a372ce1ec0e66640eb0badddff3f2e90 (diff)
boost->std
Change-Id: Ifde84627578283bd057d7393eb7e5578ef5c029a
Diffstat (limited to 'unoxml/source/xpath/nodelist.hxx')
-rw-r--r--unoxml/source/xpath/nodelist.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unoxml/source/xpath/nodelist.hxx b/unoxml/source/xpath/nodelist.hxx
index 2b5da0b45aef..0e0627d307a4 100644
--- a/unoxml/source/xpath/nodelist.hxx
+++ b/unoxml/source/xpath/nodelist.hxx
@@ -33,7 +33,7 @@
#include "libxml/tree.h"
#include "libxml/xpath.h"
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace DOM {
class CDocument;
@@ -49,14 +49,14 @@ namespace XPath
::rtl::Reference< DOM::CDocument > const m_pDocument;
::osl::Mutex & m_rMutex;
/// retain the result set in case the CXPathObject is released
- boost::shared_ptr<xmlXPathObject> m_pXPathObj;
+ std::shared_ptr<xmlXPathObject> m_pXPathObj;
xmlNodeSetPtr m_pNodeSet;
public:
CNodeList(
::rtl::Reference<DOM::CDocument> const& pDocument,
::osl::Mutex & rMutex,
- boost::shared_ptr<xmlXPathObject> const& rxpathObj);
+ std::shared_ptr<xmlXPathObject> const& rxpathObj);
/**
The number of nodes in the list.
*/