From 05dfa2f6bfaffd0caa380d246027082bd2969aba Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 30 Sep 2014 08:44:39 +0200 Subject: cppuhelper: std::auto_ptr -> std::unique_ptr Change-Id: I601fac44b272671b2763b45c5ef284cdd44d5066 --- cppuhelper/source/factory.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cppuhelper') diff --git a/cppuhelper/source/factory.cxx b/cppuhelper/source/factory.cxx index 11734e1f5000..a212e7dac5ca 100644 --- a/cppuhelper/source/factory.cxx +++ b/cppuhelper/source/factory.cxx @@ -538,7 +538,7 @@ private: Reference xModuleFactory; Reference xModuleFactoryDepr; Reference< beans::XPropertySetInfo > m_xInfo; - ::std::auto_ptr< IPropertyArrayHelper > m_property_array_helper; + ::std::unique_ptr< IPropertyArrayHelper > m_property_array_helper; protected: using OPropertySetHelper::getTypes; }; -- cgit