Fixing cppcheck "Prefer prefix ++/-- operators for non-primitive types." issues.

This commit is contained in:
lotodore
2011-02-09 14:33:39 +00:00
parent 07a4403e97
commit 4032bf48a2
24 changed files with 173 additions and 173 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ ClientBoard::collectSets()
boost::recursive_mutex::scoped_lock lock(m_syncMutex);
sets = 0;
PlayerListConstIterator it_c;
for (it_c=seatsList->begin(); it_c!=seatsList->end(); it_c++)
for (it_c=seatsList->begin(); it_c!=seatsList->end(); ++it_c)
sets += (*it_c)->getMySet();
}