cppcheck: prefer prefix variant

This commit is contained in:
Caolán McNamara 2010-12-24 13:31:59 +00:00
parent 5d0c963e0f
commit 87cc602aea

View file

@ -113,7 +113,7 @@ public:
rValue = (*it).second;
return true;
}
it++;
++it;
}
return false;
}
@ -503,7 +503,7 @@ bool InternetProxyDecider_Impl::shouldUseProxy( const rtl::OUString & rHost,
if ( (*it).first.Matches( aHostAndPort ) )
return false;
}
it++;
++it;
}
return true;