From 96511bdc00c2e4c17517b0cc3fce50a08683b2a4 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 1 May 2020 18:08:26 +0300 Subject: Adapt to renaming bpkg::url class to bpkg::manifest_url --- mod/page.hxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'mod/page.hxx') diff --git a/mod/page.hxx b/mod/page.hxx index 49d8608..cc9840e 100644 --- a/mod/page.hxx +++ b/mod/page.hxx @@ -378,13 +378,14 @@ namespace brep class TR_URL { public: - TR_URL (const url& u, const char* l = "url"): url_ (u), label_ (l) {} + TR_URL (const manifest_url& u, const char* l = "url") + : url_ (u), label_ (l) {} void operator() (xml::serializer&) const; private: - const url& url_; + const manifest_url& url_; const char* label_; }; -- cgit v1.1