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
+2 -2
View File
@@ -308,7 +308,7 @@ void Client::SendTributes() {
cur = tribute_list.begin();
end = tribute_list.end();
for(; cur != end; cur++) {
for(; cur != end; ++cur) {
if(cur->second.is_guild)
continue; //skip guild tributes here
int len = cur->second.name.length();
@@ -342,7 +342,7 @@ void Client::SendGuildTributes() {
cur = tribute_list.begin();
end = tribute_list.end();
for(; cur != end; cur++) {
for(; cur != end; ++cur) {
if(!cur->second.is_guild)
continue; //skip guild tributes here
int len = cur->second.name.length();