diff Framework/Toolbox/ShearWarpProjectiveTransform.cpp @ 1298:8a0a62189f46

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 16:31:30 +0100
parents 2d8ab34c8c91
children 30deba7bc8e2
line wrap: on
line diff
--- a/Framework/Toolbox/ShearWarpProjectiveTransform.cpp	Sun Feb 23 15:25:49 2020 +0100
+++ b/Framework/Toolbox/ShearWarpProjectiveTransform.cpp	Mon Mar 02 16:31:30 2020 +0100
@@ -414,7 +414,7 @@
      * for each pixel is stored in the "counter" image.
      **/
 
-    std::auto_ptr<Orthanc::ImageAccessor> accumulator, counter, intermediate;
+    std::unique_ptr<Orthanc::ImageAccessor> accumulator, counter, intermediate;
 
     accumulator.reset(new Orthanc::Image(Orthanc::PixelFormat_Float32,
                                          intermediateWidth, intermediateHeight, false));
@@ -635,7 +635,7 @@
                                            ImageInterpolation shearInterpolation,
                                            ImageInterpolation warpInterpolation)
   {
-    std::auto_ptr<Orthanc::ImageAccessor> target
+    std::unique_ptr<Orthanc::ImageAccessor> target
       (new Orthanc::Image(targetFormat, targetWidth, targetHeight, false));
     
     if (source.GetFormat() == Orthanc::PixelFormat_Grayscale16 &&