diff Core/Images/Font.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 058b5ade8acd
line wrap: on
line diff
--- a/Core/Images/Font.cpp	Fri Feb 28 13:23:11 2020 +0100
+++ b/Core/Images/Font.cpp	Mon Mar 02 15:32:45 2020 +0100
@@ -103,7 +103,7 @@
         throw OrthancException(ErrorCode_BadFont);
       }
 
-      std::auto_ptr<Character> c(new Character);
+      std::unique_ptr<Character> c(new Character);
       
       c->advance_ = info["Advance"].asUInt();
       c->height_ = info["Height"].asUInt();
@@ -407,7 +407,7 @@
     unsigned int width, height;
     ComputeTextExtent(width, height, utf8);
     
-    std::auto_ptr<ImageAccessor>  target(new Image(format, width, height, false));
+    std::unique_ptr<ImageAccessor>  target(new Image(format, width, height, false));
     ImageProcessing::Set(*target, 0, 0, 0, 255);
     Draw(*target, utf8, 0, 0, r, g, b);
 
@@ -420,7 +420,7 @@
     unsigned int width, height;
     ComputeTextExtent(width, height, utf8);
 
-    std::auto_ptr<ImageAccessor>  target(new Image(PixelFormat_Grayscale8, width, height, false));
+    std::unique_ptr<ImageAccessor>  target(new Image(PixelFormat_Grayscale8, width, height, false));
     ImageProcessing::Set(*target, 0);
     Draw(*target, utf8, 0, 0, 255);