diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-05-01 18:08:26 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-05-01 18:08:26 +0300 |
commit | 96511bdc00c2e4c17517b0cc3fce50a08683b2a4 (patch) | |
tree | 8625f9160100afb205f2dd31a39a9be1a40c4133 /mod/page.hxx | |
parent | e326eacee55d5bff5fd18aefece07cd7f7daacee (diff) |
Adapt to renaming bpkg::url class to bpkg::manifest_url
Diffstat (limited to 'mod/page.hxx')
-rw-r--r-- | mod/page.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
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_; }; |