summaryrefslogtreecommitdiffstats
path: root/include/sax/fastparser.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/sax/fastparser.hxx')
-rw-r--r--include/sax/fastparser.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sax/fastparser.hxx b/include/sax/fastparser.hxx
index 9d156b1b0c5c..d73091739dd4 100644
--- a/include/sax/fastparser.hxx
+++ b/include/sax/fastparser.hxx
@@ -25,6 +25,7 @@
#include <cppuhelper/implbase2.hxx>
#include <sax/fastsaxdllapi.h>
+#include <memory>
namespace com { namespace sun { namespace star { namespace xml { namespace sax {
@@ -46,7 +47,7 @@ class FASTSAX_DLLPUBLIC FastSaxParser
css::xml::sax::XFastParser,
css::lang::XServiceInfo >
{
- FastSaxParserImpl* mpImpl;
+ std::unique_ptr<FastSaxParserImpl> mpImpl;
public:
FastSaxParser();