diff Core/Images/Image.cpp @ 3712:2a170a8f1faf

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 15:32:45 +0100
parents 94f4a18a79cc
children
line wrap: on
line diff
--- a/Core/Images/Image.cpp	Fri Feb 28 13:23:11 2020 +0100
+++ b/Core/Images/Image.cpp	Mon Mar 02 15:32:45 2020 +0100
@@ -33,6 +33,7 @@
 
 #include "Image.h"
 
+#include "../Compatibility.h"
 #include "ImageProcessing.h"
 
 #include <memory>
@@ -54,7 +55,7 @@
 
   Image* Image::Clone(const ImageAccessor& source)
   {
-    std::auto_ptr<Image> target(new Image(source.GetFormat(), source.GetWidth(), source.GetHeight(), false));
+    std::unique_ptr<Image> target(new Image(source.GetFormat(), source.GetWidth(), source.GetHeight(), false));
     ImageProcessing::Copy(*target, source);
     return target.release();
   }