Kaydet (Commit) 5b401a06 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

shell: std::auto_ptr -> std::unique_ptr

Change-Id: I6fc7ef7438e1b999b3b65e4e661b9e787a66cf47
üst 4281abdf
......@@ -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
......
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