diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-19 13:38:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-19 13:38:20 +0200 |
commit | f9b7927440b89768613b7247e008efa574a6b38b (patch) | |
tree | 06f99597af07a15d844cc4ea8d9816a8bb2543f5 | |
parent | e5aae1bb97d5f73703287358f841c6d957101dfd (diff) |
Fix bug in basic_path constructor
-rw-r--r-- | butl/path | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |