diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/source/tools/lngconvex/defs.hxx | 4 |
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 |