aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/coll_templ.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-08-31 19:42:53 +0200
committerEinar Johan Trøan Sømåen2012-08-31 20:00:41 +0200
commit158a2060868eceff254460a89b67d78dc650bc94 (patch)
tree5ac88101000dfcadf05d65fc99a8facd462c80d6 /engines/wintermute/coll_templ.h
parent8cf7d765c05bd13fc381e94801b2bbd8c27e1c07 (diff)
downloadscummvm-rg350-158a2060868eceff254460a89b67d78dc650bc94.tar.gz
scummvm-rg350-158a2060868eceff254460a89b67d78dc650bc94.tar.bz2
scummvm-rg350-158a2060868eceff254460a89b67d78dc650bc94.zip
WINTERMUTE: Use ++it instead of it++
Diffstat (limited to 'engines/wintermute/coll_templ.h')
-rw-r--r--engines/wintermute/coll_templ.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/wintermute/coll_templ.h b/engines/wintermute/coll_templ.h
index f1bf594769..389636cfe6 100644
--- a/engines/wintermute/coll_templ.h
+++ b/engines/wintermute/coll_templ.h
@@ -45,7 +45,7 @@ public:
j = Common::Array<TYPE>::size();
persistMgr->transfer("ArraySize", &j);
typename Common::Array<TYPE>::const_iterator it = Common::Array<TYPE>::begin();
- for (; it != Common::Array<TYPE>::end(); it++) {
+ for (; it != Common::Array<TYPE>::end(); ++it) {
TYPE obj = *it;
persistMgr->transfer("", &obj);
}