diff Core/MetricsRegistry.cpp @ 3786:3801435e34a1 SylvainRouquette/fix-issue169-95b752c

integration Orthanc-1.6.0->SylvainRouquette
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 19 Mar 2020 11:48:30 +0100
parents 2a170a8f1faf
children
line wrap: on
line diff
--- a/Core/MetricsRegistry.cpp	Wed Mar 18 08:59:06 2020 +0100
+++ b/Core/MetricsRegistry.cpp	Thu Mar 19 11:48:30 2020 +0100
@@ -2,7 +2,7 @@
  * Orthanc - A Lightweight, RESTful DICOM Store
  * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
  * Department, University Hospital of Liege, Belgium
- * Copyright (C) 2017-2019 Osimis S.A., Belgium
+ * Copyright (C) 2017-2020 Osimis S.A., Belgium
  *
  * This program is free software: you can redistribute it and/or
  * modify it under the terms of the GNU General Public License as
@@ -34,8 +34,9 @@
 #include "PrecompiledHeaders.h"
 #include "MetricsRegistry.h"
 
+#include "ChunkedBuffer.h"
+#include "Compatibility.h"
 #include "OrthancException.h"
-#include "ChunkedBuffer.h"
 
 namespace Orthanc
 {
@@ -228,7 +229,7 @@
 
     if (found == content_.end())
     {
-      std::auto_ptr<Item> item(new Item(type));
+      std::unique_ptr<Item> item(new Item(type));
       item->Update(value);
       content_[name] = item.release();
     }