diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-16 12:01:43 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-16 20:22:45 +0000 |
commit | a3f596902ce7d7bab963f95da8a17f49fda0042a (patch) | |
tree | 7f95a9181d53972e8d4bff2973f79aa78bb5e7d4 /ucb | |
parent | 657bfc0227eeb94b913d68684833a328f57f54ed (diff) |
cppcheck: prefer prefix variant
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/gvfs/gvfs_directory.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/gvfs/gvfs_directory.cxx b/ucb/source/ucp/gvfs/gvfs_directory.cxx index d1d8d6663ae1..d0a403d86bc6 100644 --- a/ucb/source/ucp/gvfs/gvfs_directory.cxx +++ b/ucb/source/ucp/gvfs/gvfs_directory.cxx @@ -135,10 +135,10 @@ struct gvfs::DataSupplier_Impl ResultList::const_iterator end = m_aResults.end(); while ( it != end ) - { - delete (*it); - it++; - } + { + delete (*it); + ++it; + } } }; |