cppcheck: prefer prefix variants
This commit is contained in:
parent
4538875a16
commit
beb70bd3d4
1 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ DataSupplier_Impl::~DataSupplier_Impl()
|
|||
while ( it != end )
|
||||
{
|
||||
delete (*it);
|
||||
it++;
|
||||
++it;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -375,7 +375,7 @@ sal_Bool DataSupplier::getData()
|
|||
if ( (*it).equals( DAVProperties::RESOURCETYPE ) )
|
||||
break;
|
||||
|
||||
it++;
|
||||
++it;
|
||||
}
|
||||
|
||||
if ( it == end )
|
||||
|
|
Loading…
Reference in a new issue