summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-01-06 14:00:58 +0000
committerCaolán McNamara <caolanm@redhat.com>2011-01-06 14:00:58 +0000
commit7bda7a2cae094ad4ed195ab1095e707d63c030c4 (patch)
tree26f94c66964801f9ba286069700a5695fd8a4a0a /hwpfilter
parent9941a8aaea6b2a4262c02e179047e120714ed9c7 (diff)
cppunit: prefer prefix variant
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/list.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/list.hxx b/hwpfilter/source/list.hxx
index 2399bb8e3f39..44d91e18439f 100644
--- a/hwpfilter/source/list.hxx
+++ b/hwpfilter/source/list.hxx
@@ -198,8 +198,8 @@ int LinkedList<T>::remove( T* pItem )
typename list_t::iterator aEnd = maList.end();
while( aIter != aEnd && *aIter != pItem )
{
- i++;
- aIter++;
+ ++i;
+ ++aIter;
}
if( aIter != aEnd )