summaryrefslogtreecommitdiff
path: root/basic/source/runtime/dllmgr-x86.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/dllmgr-x86.cxx')
-rw-r--r--basic/source/runtime/dllmgr-x86.cxx13
1 files changed, 10 insertions, 3 deletions
diff --git a/basic/source/runtime/dllmgr-x86.cxx b/basic/source/runtime/dllmgr-x86.cxx
index 2bb299321c56..bd8c5be476af 100644
--- a/basic/source/runtime/dllmgr-x86.cxx
+++ b/basic/source/runtime/dllmgr-x86.cxx
@@ -38,7 +38,6 @@
#include <rtl/string.hxx>
#include <rtl/ustring.hxx>
#include <salhelper/simplereferenceobject.hxx>
-#include <boost/noncopyable.hpp>
#undef max
@@ -110,8 +109,12 @@ struct StringData: public UnmarshalData {
bool special;
};
-class MarshalData: private boost::noncopyable {
+class MarshalData {
public:
+ MarshalData() = default;
+ MarshalData(const MarshalData&) = delete;
+ const MarshalData& operator=(const MarshalData&) = delete;
+
std::vector< char > * newBlob() {
blobs_.push_front(std::vector< char >());
return &blobs_.front();
@@ -668,11 +671,15 @@ OUString fullDllName(OUString const & name) {
}
-struct SbiDllMgr::Impl: private boost::noncopyable {
+struct SbiDllMgr::Impl {
private:
typedef std::map< OUString, rtl::Reference< Dll > > Dlls;
public:
+ Impl() = default;
+ Impl(const Impl&) = delete;
+ const Impl& operator=(const Impl&) = delete;
+
Dll * getDll(OUString const & name);
Dlls dlls;