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

This commit is contained in:
satbaby
2012-04-28 10:56:27 +02:00
parent f36ee26d87
commit bb347b3a44
41 changed files with 117 additions and 117 deletions

View File

@@ -601,7 +601,7 @@ void CPlugins::startPlugin(int number,int /*param*/)
bool CPlugins::hasPlugin(CPlugins::p_type_t type)
{
for (std::vector<plugin>::iterator it=plugin_list.begin();
it!=plugin_list.end(); it++)
it!=plugin_list.end(); ++it)
{
if (it->type == type && !it->hide)
return true;