Prefer prefix ++/-- on non-primitive types

Postfix ++/-- might cause the creation of a tmp instance
that might be optimized out. Mights are bad. Prefix doesn't
have this problem.
This commit is contained in:
Michael Cook (mackal)
2014-01-13 22:14:02 -05:00
parent 47c33f3b31
commit 4216627604
51 changed files with 405 additions and 426 deletions
+3 -3
View File
@@ -121,7 +121,7 @@ int main(int argc, char *argv[]) {
*/
zone = zones.begin();
zend = zones.end();
for(; zone != zend; zone++) {
for(; zone != zend; ++zone) {
if(!zone->second->Process())
to_remove.insert(zone->first);
}
@@ -159,7 +159,7 @@ int main(int argc, char *argv[]) {
//try to be semi-nice about this... without waiting too long
zone = zones.begin();
zend = zones.end();
for(; zone != zend; zone++) {
for(; zone != zend; ++zone) {
zone->second->Stop();
}
Sleep(1);
@@ -169,7 +169,7 @@ int main(int argc, char *argv[]) {
launch->Process();
//kill anybody left
launch->TerminateAll(true);
for(; zone != zend; zone++) {
for(; zone != zend; ++zone) {
delete zone->second;
}