summaryrefslogtreecommitdiff
path: root/sax/source/tools/CachedOutputStream.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sax/source/tools/CachedOutputStream.hxx')
-rw-r--r--sax/source/tools/CachedOutputStream.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sax/source/tools/CachedOutputStream.hxx b/sax/source/tools/CachedOutputStream.hxx
index f11697871ad0..f32693e70f92 100644
--- a/sax/source/tools/CachedOutputStream.hxx
+++ b/sax/source/tools/CachedOutputStream.hxx
@@ -17,7 +17,7 @@
#include <cstring>
#include <cstdlib>
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace sax_fastparser {
@@ -40,7 +40,7 @@ class CachedOutputStream
uno_Sequence *pSeq;
bool mbWriteToOutStream;
/// ForMerge structure is used for sorting elements in Writer
- boost::shared_ptr< ForMergeBase > mpForMerge;
+ std::shared_ptr< ForMergeBase > mpForMerge;
public:
CachedOutputStream() : mnCacheWrittenSize(0)
@@ -61,7 +61,7 @@ public:
mxOutputStream = xOutputStream;
}
- void setOutput( boost::shared_ptr< ForMergeBase > pForMerge )
+ void setOutput( std::shared_ptr< ForMergeBase > pForMerge )
{
flush();
mbWriteToOutStream = false;