summaryrefslogtreecommitdiff
path: root/unoxml/source/xpath/nodelist.hxx
diff options
context:
space:
mode:
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.
*/