summaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-01 15:14:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-10-01 17:35:09 +0200
commit5b401a06a616238cfbd961e2afb47a21c2835220 (patch)
tree1afcc065d5e5dc48b78d295d9715590ac8de5849 /shell
parent4281abdfa8a417f7ba47c466410e1cbfed4342e0 (diff)
shell: std::auto_ptr -> std::unique_ptr
Change-Id: I6fc7ef7438e1b999b3b65e4e661b9e787a66cf47
Diffstat (limited to 'shell')
-rw-r--r--shell/source/tools/lngconvex/defs.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/tools/lngconvex/defs.hxx b/shell/source/tools/lngconvex/defs.hxx
index 1cf7054451e5..52646b4901b6 100644
--- a/shell/source/tools/lngconvex/defs.hxx
+++ b/shell/source/tools/lngconvex/defs.hxx
@@ -25,10 +25,10 @@
#include <memory>
typedef std::vector<std::string> StringList_t;
-typedef std::auto_ptr<StringList_t> StringListPtr_t;
+typedef std::unique_ptr<StringList_t> StringListPtr_t;
typedef std::vector<int> IntegerList_t;
-typedef std::auto_ptr<IntegerList_t> IntegerListPtr_t;
+typedef std::unique_ptr<IntegerList_t> IntegerListPtr_t;
#endif