diff Framework/Fonts/GlyphTextureAlphabet.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 257f2c9a02ac
line wrap: on
line diff
--- a/Framework/Fonts/GlyphTextureAlphabet.cpp	Sun Feb 23 15:25:49 2020 +0100
+++ b/Framework/Fonts/GlyphTextureAlphabet.cpp	Mon Mar 02 16:31:30 2020 +0100
@@ -77,7 +77,7 @@
   class GlyphTextureAlphabet::TextureGenerator : public GlyphAlphabet::IGlyphVisitor
   {
   private:
-    std::auto_ptr<Orthanc::ImageAccessor>  texture_;
+    std::unique_ptr<Orthanc::ImageAccessor>  texture_;
 
     unsigned int    countColumns_;
     unsigned int    countRows_;
@@ -289,7 +289,7 @@
   {
     TextBoundingBox box(alphabet_, utf8);
 
-    std::auto_ptr<Orthanc::ImageAccessor> bitmap(
+    std::unique_ptr<Orthanc::ImageAccessor> bitmap(
       new Orthanc::Image(Orthanc::PixelFormat_RGBA32,
                          box.GetWidth(), box.GetHeight(),
                          true /* force minimal pitch */));