From 01a8bda416d1598f5486f95b6a57d61ff09873ed Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 15 Feb 2015 20:54:22 +0000 Subject: boost::noncopyable->'= delete' Change-Id: If0f898a1e912fcd2095d8ba88b2b8046596e16ea --- binaryurp/source/unmarshal.hxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'binaryurp/source/unmarshal.hxx') diff --git a/binaryurp/source/unmarshal.hxx b/binaryurp/source/unmarshal.hxx index 8494731ec6c3..3c523aa3f637 100644 --- a/binaryurp/source/unmarshal.hxx +++ b/binaryurp/source/unmarshal.hxx @@ -24,7 +24,6 @@ #include -#include "boost/noncopyable.hpp" #include "com/sun/star/uno/Sequence.hxx" #include "rtl/ref.hxx" #include "sal/types.h" @@ -41,7 +40,7 @@ namespace com { namespace sun { namespace star { namespace uno { namespace binaryurp { -class Unmarshal: private boost::noncopyable { +class Unmarshal { public: Unmarshal( rtl::Reference< Bridge > const & bridge, ReaderState & state, @@ -66,6 +65,9 @@ public: void done() const; private: + Unmarshal(const Unmarshal&) SAL_DELETED_FUNCTION; + Unmarshal& operator=(const Unmarshal&) SAL_DELETED_FUNCTION; + void check(sal_Int32 size) const; sal_uInt32 readCompressed(); -- cgit