From: Marcin Siodelski Date: Mon, 28 Jan 2019 13:05:27 +0000 (+0100) Subject: [#396,!205] Fixed compilation error in StampedValue. X-Git-Tag: 429-Updated-StampedValue-to-support-reals_base~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c75dac6df917553e570634d9279ed40f54b00ee5;p=thirdparty%2Fkea.git [#396,!205] Fixed compilation error in StampedValue. --- diff --git a/src/lib/cc/stamped_element.cc b/src/lib/cc/stamped_element.cc index 2b84aeab1c..3144931f87 100644 --- a/src/lib/cc/stamped_element.cc +++ b/src/lib/cc/stamped_element.cc @@ -1,4 +1,4 @@ -// Copyright (C) 2018 Internet Systems Consortium, Inc. ("ISC") +// Copyright (C) 2018-2019 Internet Systems Consortium, Inc. ("ISC") // // This Source Code Form is subject to the terms of the Mozilla Public // License, v. 2.0. If a copy of the MPL was not distributed with this @@ -10,12 +10,12 @@ namespace isc { namespace data { StampedElement::StampedElement() - : timestamp_(boost::posix_time::microsecond_clock::universal_time()) { + : timestamp_(boost::posix_time::microsec_clock::universal_time()) { } void StampedElement::updateModificationTime() { - setModificationTime(boost::posix_time::microsecond_clock::universal_time()); + setModificationTime(boost::posix_time::microsec_clock::universal_time()); } } // end of namespace isc::data