From 0184c3182f3bdc83fd4dc6f10ed3609cca32990c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 15 Jul 2015 00:29:07 +0200 Subject: Fix bug in path::iterator postfix increment --- butl/path | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'butl/path') 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 { -- cgit v1.1