summaryrefslogtreecommitdiff
path: root/shell/inc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-02 15:20:54 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-10-02 15:20:54 +0200
commit36d24bced0ea5fcbbd380b15e9d1a813fbef32cf (patch)
treeb968e0cbf0aa9b46762824fd874e86576ca86a98 /shell/inc
parentfb515368bd8200b4d279061bf2b6bd8b38c27a2e (diff)
shell (Windows): std::auto_ptr -> std::unique_ptr
Change-Id: I44c843c028c2dfcfcea9f6a2196440ca700fc3a8
Diffstat (limited to 'shell/inc')
-rw-r--r--shell/inc/internal/zipfile.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/inc/internal/zipfile.hxx b/shell/inc/internal/zipfile.hxx
index 15a900174419..a2e369c5f403 100644
--- a/shell/inc/internal/zipfile.hxx
+++ b/shell/inc/internal/zipfile.hxx
@@ -40,7 +40,7 @@ class ZipFile
public:
typedef std::vector<std::string> Directory_t;
- typedef std::auto_ptr<Directory_t> DirectoryPtr_t;
+ typedef std::unique_ptr<Directory_t> DirectoryPtr_t;
typedef std::vector<char> ZipContentBuffer_t;
public: