From 0db5f43f88a22a8ef9323ec5b1561be882662350 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 22 Sep 2015 14:06:40 +0200 Subject: Minor improvements to repository_location --- bpkg/manifest | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'bpkg/manifest') diff --git a/bpkg/manifest b/bpkg/manifest index 47b8d76..dfbe5af 100644 --- a/bpkg/manifest +++ b/bpkg/manifest @@ -337,6 +337,10 @@ namespace bpkg // repository_location (const std::string&, const repository_location& base); + repository_location (const repository_location& l, + const repository_location& base) + : repository_location (l.string (), base) {} + // Note that relative locations have no canonical name. Canonical // name of an empty location is the empty name. // @@ -428,6 +432,12 @@ namespace bpkg butl::dir_path path_; }; + inline std::ostream& + operator<< (std::ostream& os, const repository_location& l) + { + return os << l.string (); + } + class repository_manifest { public: -- cgit v1.1