diff Applications/Sdl/SdlOrthancSurface.h @ 1299:c38c89684d83 broker

replacing std::auto_ptr by std::unique_ptr
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 02 Mar 2020 17:21:24 +0100
parents 2d8ab34c8c91
children 257f2c9a02ac
line wrap: on
line diff
--- a/Applications/Sdl/SdlOrthancSurface.h	Sun Feb 23 15:32:24 2020 +0100
+++ b/Applications/Sdl/SdlOrthancSurface.h	Mon Mar 02 17:21:24 2020 +0100
@@ -33,7 +33,7 @@
   class SdlOrthancSurface : public boost::noncopyable
   {
   private:
-    std::auto_ptr<Orthanc::ImageAccessor>  image_;
+    std::unique_ptr<Orthanc::ImageAccessor>  image_;
     SdlWindow&                             window_;
     SDL_Surface*                           sdlSurface_;