summaryrefslogtreecommitdiff
path: root/include/basic/basrdll.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/basic/basrdll.hxx')
-rw-r--r--include/basic/basrdll.hxx5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/basic/basrdll.hxx b/include/basic/basrdll.hxx
index 274126d6c461..45ce39e2e3e1 100644
--- a/include/basic/basrdll.hxx
+++ b/include/basic/basrdll.hxx
@@ -20,9 +20,8 @@
#ifndef INCLUDED_BASIC_BASRDLL_HXX
#define INCLUDED_BASIC_BASRDLL_HXX
-#include <boost/scoped_ptr.hpp>
-
#include <basic/basicdllapi.h>
+#include <memory>
class ResMgr;
@@ -30,7 +29,7 @@ class BASIC_DLLPUBLIC BasicDLL
{
public:
struct Impl;
- ::boost::scoped_ptr<Impl> m_pImpl;
+ std::unique_ptr<Impl> m_xImpl;
public:
BasicDLL();