summaryrefslogtreecommitdiff
path: root/binaryurp/source/writerstate.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binaryurp/source/writerstate.hxx')
-rw-r--r--binaryurp/source/writerstate.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/binaryurp/source/writerstate.hxx b/binaryurp/source/writerstate.hxx
index 859a09271805..7ae457c46c8e 100644
--- a/binaryurp/source/writerstate.hxx
+++ b/binaryurp/source/writerstate.hxx
@@ -22,7 +22,6 @@
#include "sal/config.h"
-#include "boost/noncopyable.hpp"
#include "rtl/byteseq.hxx"
#include "rtl/ustring.hxx"
#include "typelib/typedescription.hxx"
@@ -31,7 +30,11 @@
namespace binaryurp {
-struct WriterState: private boost::noncopyable {
+struct WriterState {
+private:
+ WriterState(const WriterState&) SAL_DELETED_FUNCTION;
+ WriterState& operator=(const WriterState&) SAL_DELETED_FUNCTION;
+public:
WriterState():
typeCache(cache::size), oidCache(cache::size), tidCache(cache::size) {}