summaryrefslogtreecommitdiff
path: root/sw/inc/init.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-03-23 12:59:23 +0100
committerMichael Stahl <mstahl@redhat.com>2016-03-23 15:51:51 +0100
commitbbf3083e0d9645a8862dec1957f34a26f123fa6f (patch)
tree4cb02f5b042790fdd8ac04c8f95edbc0ec424248 /sw/inc/init.hxx
parent7b08ccceffac5b5df904f84ca0b5aa646d6bd00e (diff)
sw: replace boost::noncopyable with C++11 delete
Change-Id: I672b187c92ccb71a6c4b9bc5e1169970fb61aa7d
Diffstat (limited to 'sw/inc/init.hxx')
-rw-r--r--sw/inc/init.hxx8
1 files changed, 6 insertions, 2 deletions
diff --git a/sw/inc/init.hxx b/sw/inc/init.hxx
index 96fb0c15fc07..8730c9de1716 100644
--- a/sw/inc/init.hxx
+++ b/sw/inc/init.hxx
@@ -21,7 +21,6 @@
#include <sal/config.h>
-#include <boost/noncopyable.hpp>
#include <osl/module.h>
#include <osl/module.hxx>
@@ -33,7 +32,12 @@ void _FinitCore();
namespace sw {
// basflt/fltini.cxx
-class Filters: private boost::noncopyable {
+class Filters
+{
+private:
+ Filters(Filters const&) = delete;
+ Filters& operator=(Filters const&) = delete;
+
public:
Filters();