diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-11-26 21:38:32 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-11-26 21:38:32 +0000 |
commit | 751c750a8cec115ab9570b05464412f70ba92c4d (patch) | |
tree | b94967dbf0d2c8972a1e26d86efdbd8bb50dd1f7 /cppu | |
parent | 827da0111cc56b215d1f215738d8c60008bc7463 (diff) |
cppcheck: use prefix variant
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/typelib/typelib.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppu/source/typelib/typelib.cxx b/cppu/source/typelib/typelib.cxx index 3cf9abe0934e..0902fd98deb2 100644 --- a/cppu/source/typelib/typelib.cxx +++ b/cppu/source/typelib/typelib.cxx @@ -281,7 +281,7 @@ TypeDescriptor_Init_Impl::~TypeDescriptor_Init_Impl() SAL_THROW( () ) while( aIt != pCache->end() ) { typelib_typedescription_release( (*aIt) ); - aIt++; + ++aIt; } delete pCache; pCache = 0; |