]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#396,!205] Fixed compilation error in StampedValue.
authorMarcin Siodelski <marcin@isc.org>
Mon, 28 Jan 2019 13:05:27 +0000 (14:05 +0100)
committerMarcin Siodelski <marcin@isc.org>
Wed, 30 Jan 2019 09:18:59 +0000 (10:18 +0100)
src/lib/cc/stamped_element.cc

index 2b84aeab1ccc8fa0e56386baeba1afdd3c9a7da5..3144931f877c967b9f95bf557d0e141a22e94263 100644 (file)
@@ -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