diff Framework/Scene2D/Internals/OpenGLTextureProgram.h @ 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/Scene2D/Internals/OpenGLTextureProgram.h	Sun Feb 23 15:25:49 2020 +0100
+++ b/Framework/Scene2D/Internals/OpenGLTextureProgram.h	Mon Mar 02 16:31:30 2020 +0100
@@ -26,6 +26,8 @@
 #include "../../OpenGL/OpenGLTexture.h"
 #include "../../Toolbox/AffineTransform2D.h"
 
+#include <Core/Compatibility.h>
+
 namespace OrthancStone
 {
   namespace Internals
@@ -34,7 +36,7 @@
     {
     private:
       OpenGL::IOpenGLContext&               context_;
-      std::auto_ptr<OpenGL::OpenGLProgram>  program_;
+      std::unique_ptr<OpenGL::OpenGLProgram>  program_;
       GLint                                 positionLocation_;
       GLint                                 textureLocation_;
       GLuint                                buffers_[2];