diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:14:29 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-06 14:47:37 +0000 |
commit | 1c4899220103d0f26aab9b4db70d329f161454a1 (patch) | |
tree | 469afcd7c7330fd62715617f1e7fcafcb0f2d74f /ucb | |
parent | a95e4952297007634302b11e3eaa3d0001a40f47 (diff) |
cppunit: prefer prefix variant
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/odma/odma_datasupplier.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/odma/odma_datasupplier.cxx b/ucb/source/ucp/odma/odma_datasupplier.cxx index 6b680896196d..817a4f4decf8 100644 --- a/ucb/source/ucp/odma/odma_datasupplier.cxx +++ b/ucb/source/ucp/odma/odma_datasupplier.cxx @@ -115,7 +115,7 @@ DataSupplier_Impl::~DataSupplier_Impl() while ( it != end ) { delete (*it); - it++; + ++it; } } |