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/Core/Unix/Linux/CoreLinux.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Core/Unix/Linux') diff --git a/src/Core/Unix/Linux/CoreLinux.cpp b/src/Core/Unix/Linux/CoreLinux.cpp index 7f18fff4..47ec8fb8 100644 --- a/src/Core/Unix/Linux/CoreLinux.cpp +++ b/src/Core/Unix/Linux/CoreLinux.cpp @@ -489,6 +489,6 @@ namespace VeraCrypt } } - auto_ptr Core (new CoreServiceProxy ); - auto_ptr CoreDirect (new CoreLinux); + unique_ptr Core (new CoreServiceProxy ); + unique_ptr CoreDirect (new CoreLinux); } -- cgit v1.2.3