From bf03aa3bf4315c618ae13ddbaef30baea2430cc5 Mon Sep 17 00:00:00 2001 From: Kevin Hunter Date: Fri, 11 Feb 2011 13:44:07 +0000 Subject: cppcheck: post- to pre- *crement change --- crashrep/source/win32/soreport.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'crashrep') diff --git a/crashrep/source/win32/soreport.cpp b/crashrep/source/win32/soreport.cpp index 4e8db7c20afd..6d00a3098fd5 100644 --- a/crashrep/source/win32/soreport.cpp +++ b/crashrep/source/win32/soreport.cpp @@ -1833,9 +1833,7 @@ bool WriteChecksumFile( FILE *fchksum, const boost::unordered_map< string, strin boost::unordered_map< string, string >::const_iterator iter; - for ( iter = rLibraries.begin(); - iter != rLibraries.end(); - iter++ ) + for ( iter = rLibraries.begin(); iter != rLibraries.end(); ++iter ) { sal_uInt8 checksum[RTL_DIGEST_LENGTH_MD5]; sal_uInt32 nBytesProcessed = calc_md5_checksum( -- cgit