cppcheck: prefer prefix variant
This commit is contained in:
parent
5d0c963e0f
commit
87cc602aea
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue