aboutsummaryrefslogtreecommitdiff
path: root/bpkg/package.hxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2017-08-29 00:03:01 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2017-08-29 00:03:01 +0300
commitcaeba984a1120713035cb08089ec19d68e1af3ca (patch)
tree91e9139e867f05ff42f1579148f441f7a2a60fb6 /bpkg/package.hxx
parent1c4d0bab8ad9973077d231fd4fabfb76f4645a3f (diff)
Use system_clock instead of timestamp::clock
Diffstat (limited to 'bpkg/package.hxx')
-rw-r--r--bpkg/package.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bpkg/package.hxx b/bpkg/package.hxx
index 1236357..eeec449 100644
--- a/bpkg/package.hxx
+++ b/bpkg/package.hxx
@@ -650,7 +650,7 @@ namespace bpkg
expired () const
{
assert (!dummy ());
- return timestamp::clock::now () > end_date;
+ return butl::system_clock::now () > end_date;
}
public: