Kaydet (Commit) 991b8394 authored tarafından Takeshi Abe's avatar Takeshi Abe

replace deprecated std::auto_ptr with boost::scoped_ptr

Change-Id: Id10a6cef0ae25247ded7846dfd7df27922a9410a
üst a0b108ac
...@@ -22,10 +22,10 @@ ...@@ -22,10 +22,10 @@
#include "sal/config.h" #include "sal/config.h"
#include <memory> #include <boost/noncopyable.hpp>
#include <boost/scoped_ptr.hpp>
#include "basic/sberrors.hxx" #include "basic/sberrors.hxx"
#include "boost/noncopyable.hpp"
namespace rtl { class OUString; } namespace rtl { class OUString; }
class SbxArray; class SbxArray;
...@@ -46,7 +46,7 @@ public: ...@@ -46,7 +46,7 @@ public:
private: private:
struct Impl; struct Impl;
std::auto_ptr< Impl > impl_; boost::scoped_ptr< Impl > impl_;
}; };
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment