diff OrthancFramework/Sources/MetricsRegistry.cpp @ 4203:4d42408da117

improving const-correctness in ParsedDicomFile
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Sep 2020 15:01:31 +0200
parents 2007ab69ac16
children b30a8de92ad9
line wrap: on
line diff
--- a/OrthancFramework/Sources/MetricsRegistry.cpp	Thu Sep 17 08:35:11 2020 +0200
+++ b/OrthancFramework/Sources/MetricsRegistry.cpp	Thu Sep 17 15:01:31 2020 +0200
@@ -94,7 +94,7 @@
     }
 
   public:
-    Item(MetricsType type) :
+    explicit Item(MetricsType type) :
       type_(type),
       hasValue_(false),
       value_(0)