comparison OrthancStone/Sources/Toolbox/OsiriX/IntegerValue.h @ 1639:5cdc5b98f14d

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 10 Nov 2020 16:41:11 +0100
parents 8563ea5d8ae4
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1638:754ef576d945 1639:5cdc5b98f14d
37 { 37 {
38 private: 38 private:
39 int64_t value_; 39 int64_t value_;
40 40
41 public: 41 public:
42 IntegerValue(int64_t value) : 42 explicit IntegerValue(int64_t value) :
43 value_(value) 43 value_(value)
44 { 44 {
45 } 45 }
46 46
47 virtual Type GetType() const ORTHANC_OVERRIDE 47 virtual Type GetType() const ORTHANC_OVERRIDE