diff Core/OrthancException.h @ 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 5d2348b39392
line wrap: on
line diff
--- a/Core/OrthancException.h	Fri Feb 28 13:23:11 2020 +0100
+++ b/Core/OrthancException.h	Mon Mar 02 15:32:45 2020 +0100
@@ -33,6 +33,7 @@
 
 #pragma once
 
+#include "Compatibility.h"
 #include "Enumerations.h"
 #include "Logging.h"
 
@@ -53,7 +54,7 @@
     HttpStatus httpStatus_;
 
     // New in Orthanc 1.5.0
-    std::auto_ptr<std::string>  details_;
+    std::unique_ptr<std::string>  details_;
     
   public:
     OrthancException(const OrthancException& other) :