aboutsummaryrefslogtreecommitdiff
path: root/butl/path
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2015-07-15 00:29:07 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2015-07-15 00:29:07 +0200
commit0184c3182f3bdc83fd4dc6f10ed3609cca32990c (patch)
tree2d2aef0b9b5ed13bcc06518ec388f4c67a21f6a4 /butl/path
parent5b9b8d3dadf8471ff3a722fe714bd0900fc6c7ba (diff)
Fix bug in path::iterator postfix increment
Diffstat (limited to 'butl/path')
-rw-r--r--butl/path2
1 files changed, 1 insertions, 1 deletions
diff --git a/butl/path b/butl/path
index 5f6d063..3f0d567 100644
--- a/butl/path
+++ b/butl/path
@@ -406,7 +406,7 @@ namespace butl
}
iterator
- operator++ (int) const {iterator r (*this); return ++r;}
+ operator++ (int) {iterator r (*this); operator++(); return r;}
string_type operator* () const
{