diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-15 00:29:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-07-15 00:29:07 +0200 |
commit | 0184c3182f3bdc83fd4dc6f10ed3609cca32990c (patch) | |
tree | 2d2aef0b9b5ed13bcc06518ec388f4c67a21f6a4 /butl | |
parent | 5b9b8d3dadf8471ff3a722fe714bd0900fc6c7ba (diff) |
Fix bug in path::iterator postfix increment
Diffstat (limited to 'butl')
-rw-r--r-- | butl/path | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 { |