From 0a2c565aa98fa7bc9623a753370e565fc5ed1e63 Mon Sep 17 00:00:00 2001 From: Christopher Bergqvist Date: Thu, 11 Jun 2020 18:02:28 +0200 Subject: Switch from auto_ptr to unique_ptr (#638) --- src/Main/Xml.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Main/Xml.h') diff --git a/src/Main/Xml.h b/src/Main/Xml.h index 78c30278..27f0b828 100644 --- a/src/Main/Xml.h +++ b/src/Main/Xml.h @@ -66,8 +66,8 @@ namespace VeraCrypt protected: int CurrentIndentLevel; - auto_ptr MemOutStream; - auto_ptr TextOutStream; + unique_ptr MemOutStream; + unique_ptr TextOutStream; File OutFile; private: -- cgit v1.2.3