diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-24 17:48:49 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-25 08:40:11 +0200 |
commit | c91dec0dad6b0da5bfe15d0597bfc069df26f343 (patch) | |
tree | af3f075afff656995fd34ac6771f2fe2fe2df77a /include/comphelper/propertybag.hxx | |
parent | 5de8a127cd1790d37d5af83153b8103468eca6ce (diff) |
comphelper: std::auto_ptr -> std::unique_ptr
Change-Id: I364d6252f470dcc6d71a191f1249e95ca1f284ce
Diffstat (limited to 'include/comphelper/propertybag.hxx')
-rw-r--r-- | include/comphelper/propertybag.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/propertybag.hxx b/include/comphelper/propertybag.hxx index 573f0efd2ecc..484246a11d17 100644 --- a/include/comphelper/propertybag.hxx +++ b/include/comphelper/propertybag.hxx @@ -42,7 +42,7 @@ namespace comphelper class COMPHELPER_DLLPUBLIC PropertyBag : protected OPropertyContainerHelper { private: - ::std::auto_ptr< PropertyBag_Impl > m_pImpl; + ::std::unique_ptr< PropertyBag_Impl > m_pImpl; public: PropertyBag(); |