From f9b7927440b89768613b7247e008efa574a6b38b Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 19 Jul 2015 13:38:20 +0200 Subject: Fix bug in basic_path constructor --- butl/path | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/butl/path b/butl/path index c667378..1b4e006 100644 --- a/butl/path +++ b/butl/path @@ -265,7 +265,7 @@ namespace butl basic_path (const iterator& begin, const iterator& end); basic_path (const reverse_iterator& rbegin, const reverse_iterator& rend) - : basic_path (end.base (), begin.base ()) {} + : basic_path (rend.base (), rbegin.base ()) {} void swap (basic_path& p) -- cgit v1.1