comparison Framework/Common/Integer64Value.cpp @ 243:f5dc59c56e65

simplification
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Apr 2021 17:53:53 +0200
parents 3236894320d6
children 02cd7254c949
comparison
equal deleted inserted replaced
242:b97a537f4613 243:f5dc59c56e65
52 52
53 default: 53 default:
54 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); 54 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange);
55 } 55 }
56 } 56 }
57
58 std::string Integer64Value::Format() const
59 {
60 return boost::lexical_cast<std::string>(value_);
61 }
62 } 57 }