From efb5db56425245a20df704e707f6a91190eb67f3 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 30 Jul 2016 17:34:45 +0200 Subject: Don't use hard-coded directory separators --- butl/path.txx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'butl') diff --git a/butl/path.txx b/butl/path.txx index 08af340..44c03c3 100644 --- a/butl/path.txx +++ b/butl/path.txx @@ -80,14 +80,14 @@ namespace butl basic_path basic_path:: relative (basic_path d) const { - basic_path r; + dir_type r; for (;; d = d.directory ()) { if (sub (d)) break; - r /= basic_path ("../"); + r /= ".."; // Roots of the paths do not match. // -- cgit v1.1