diff options
Diffstat (limited to 'svl/source/misc/inethist.cxx')
-rw-r--r-- | svl/source/misc/inethist.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/svl/source/misc/inethist.cxx b/svl/source/misc/inethist.cxx index 09fec7d6a65c..8db4ac91144f 100644 --- a/svl/source/misc/inethist.cxx +++ b/svl/source/misc/inethist.cxx @@ -22,7 +22,6 @@ #include <algorithm> #include <string.h> -#include <boost/noncopyable.hpp> #include <rtl/instance.hxx> #include <rtl/crc.h> #include <osl/diagnose.h> @@ -41,7 +40,7 @@ #define INETHIST_SIZE_LIMIT 1024 #define INETHIST_MAGIC_HEAD 0x484D4849UL -class INetURLHistory_Impl: private boost::noncopyable +class INetURLHistory_Impl { struct head_entry { @@ -156,6 +155,8 @@ class INetURLHistory_Impl: private boost::noncopyable public: INetURLHistory_Impl(); ~INetURLHistory_Impl(); + INetURLHistory_Impl(const INetURLHistory_Impl&) = delete; + INetURLHistory_Impl& operator=(const INetURLHistory_Impl&) = delete; /** putUrl/queryUrl. */ |