From cad13ace57dade31d2cdafdb639e9f439f7ffe9a Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Sat, 30 May 2009 09:44:00 +0000 Subject: [PATCH] Remove unnecessary operator. Fixes #2166. [SVN r53435] --- utf8_codecvt_facet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8_codecvt_facet.cpp b/utf8_codecvt_facet.cpp index 658ab6a..45e8df2 100644 --- a/utf8_codecvt_facet.cpp +++ b/utf8_codecvt_facet.cpp @@ -159,7 +159,7 @@ std::codecvt_base::result utf8_codecvt_facet::do_out( to_next = to - (i+1); return std::codecvt_base::partial; } - *from++; + ++from; } from_next = from; to_next = to;