performance Prefer prefix ++/-- operators for non-primitive types.

Origin commit data
------------------
Commit: bb347b3a44
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-04-28 (Sat, 28 Apr 2012)
This commit is contained in:
Jacek Jendrzej
2012-04-28 10:56:27 +02:00
parent c179cc8762
commit 04be37cf14
41 changed files with 117 additions and 117 deletions

View File

@@ -69,8 +69,8 @@ void CLastChannel::store (int channel, t_channel_id channel_id, bool /* forceSto
/* remove this channel at other than 0 position */
if(this->lastChannels.size() > 1) {
It = this->lastChannels.begin();
It++;
for (; It != this->lastChannels.end() ; It++) {
++It;
for (; It != this->lastChannels.end() ; ++It) {
if (channel_id == It->channel_id) {
this->lastChannels.erase(It);
break;