diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-27 12:35:07 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-27 12:47:33 +0000 |
commit | 24730279f1ce593f037f8cd9ba727127d531d6ce (patch) | |
tree | b552dc8ab8b6938c71291bc5b18dac4e2397feb9 /ucb | |
parent | 6342e3564347175bdb5a92c20c61ec26dff5f08d (diff) |
cppcheck: use prefix form
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_datasupplier.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_datasupplier.cxx b/ucb/source/ucp/tdoc/tdoc_datasupplier.cxx index 332b3753dbc1..319e2c8ad101 100644 --- a/ucb/source/ucp/tdoc/tdoc_datasupplier.cxx +++ b/ucb/source/ucp/tdoc/tdoc_datasupplier.cxx @@ -110,7 +110,7 @@ DataSupplier_Impl::~DataSupplier_Impl() while ( it != end ) { delete (*it); - it++; + ++it; } delete m_pNamesOfChildren; |