diff Platforms/Generic/Oracle.cpp @ 1308:adf234ecaa00 broker

Merge
author Benjamin Golinvaux <bgo@osimis.io>
date Wed, 04 Mar 2020 10:21:54 +0100
parents 8a0a62189f46
children
line wrap: on
line diff
--- a/Platforms/Generic/Oracle.cpp	Wed Mar 04 10:07:37 2020 +0100
+++ b/Platforms/Generic/Oracle.cpp	Wed Mar 04 10:21:54 2020 +0100
@@ -62,7 +62,7 @@
           break;
         }
 
-        std::auto_ptr<Orthanc::IDynamicObject> item(that->queue_.Dequeue(100));
+        std::unique_ptr<Orthanc::IDynamicObject> item(that->queue_.Dequeue(100));
         if (item.get() != NULL)
         {
           IOracleCommand& command = dynamic_cast<IOracleCommand&>(*item);
@@ -107,7 +107,7 @@
 
     void Submit(IOracleCommand* command)
     {
-      std::auto_ptr<IOracleCommand> protection(command);
+      std::unique_ptr<IOracleCommand> protection(command);
 
       if (command == NULL)
       {