diff Core/MultiThreading/RunnableWorkersPool.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
line wrap: on
line diff
--- a/Core/MultiThreading/RunnableWorkersPool.cpp	Fri Feb 28 13:23:11 2020 +0100
+++ b/Core/MultiThreading/RunnableWorkersPool.cpp	Mon Mar 02 15:32:45 2020 +0100
@@ -35,6 +35,7 @@
 #include "RunnableWorkersPool.h"
 
 #include "SharedMessageQueue.h"
+#include "../Compatibility.h"
 #include "../OrthancException.h"
 #include "../Logging.h"
 
@@ -55,7 +56,7 @@
         {
           try
           {
-            std::auto_ptr<IDynamicObject>  obj(that->queue_.Dequeue(100));
+            std::unique_ptr<IDynamicObject>  obj(that->queue_.Dequeue(100));
             if (obj.get() != NULL)
             {
               IRunnableBySteps& runnable = *dynamic_cast<IRunnableBySteps*>(obj.get());