summaryrefslogtreecommitdiff
path: root/tools/source/xml/XmlWriter.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/xml/XmlWriter.cxx')
-rw-r--r--tools/source/xml/XmlWriter.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/source/xml/XmlWriter.cxx b/tools/source/xml/XmlWriter.cxx
index f7b288d835f9..7780bbb35fb5 100644
--- a/tools/source/xml/XmlWriter.cxx
+++ b/tools/source/xml/XmlWriter.cxx
@@ -9,7 +9,6 @@
#include <tools/stream.hxx>
#include <tools/XmlWriter.hxx>
-#include <o3tl/make_unique.hxx>
#include <libxml/xmlwriter.h>
@@ -45,7 +44,7 @@ struct XmlWriterImpl
};
XmlWriter::XmlWriter(SvStream* pStream)
- : mpImpl(o3tl::make_unique<XmlWriterImpl>(pStream))
+ : mpImpl(std::make_unique<XmlWriterImpl>(pStream))
{
}