# HG changeset patch # User Sebastien Jodogne # Date 1432904954 -7200 # Node ID 72184773c62fcd8a1da03acf2baf6c1fe83bc96f # Parent 772c8507c68dbcd91003787c1e198e91f528d028 cppcheck diff -r 772c8507c68d -r 72184773c62f Core/Cache/SharedArchive.cpp --- a/Core/Cache/SharedArchive.cpp Fri May 29 15:00:45 2015 +0200 +++ b/Core/Cache/SharedArchive.cpp Fri May 29 15:09:14 2015 +0200 @@ -82,7 +82,7 @@ SharedArchive::~SharedArchive() { for (Archive::iterator it = archive_.begin(); - it != archive_.end(); it++) + it != archive_.end(); ++it) { delete it->second; } @@ -124,7 +124,7 @@ boost::mutex::scoped_lock lock(mutex_); for (Archive::const_iterator it = archive_.begin(); - it != archive_.end(); it++) + it != archive_.end(); ++it) { items.push_back(it->first); }