diff options
author | Caolán McNamara <caolanm@redhat.com> | 2010-12-24 13:30:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2010-12-24 13:30:27 +0000 |
commit | 5f110a9734e4f315f311ef9f705d8f357eeac54a (patch) | |
tree | 7339dc94d48bac45cb48b2a885ef8f82456be040 /stoc/source | |
parent | 00d244a0fe64b5703875243f6bb727c541e45fa0 (diff) |
cppcheck: prefer prefix variant
Diffstat (limited to 'stoc/source')
-rw-r--r-- | stoc/source/inspect/introspection.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/source/inspect/introspection.cxx b/stoc/source/inspect/introspection.cxx index cf0b40c974ca..ee5d02260608 100644 --- a/stoc/source/inspect/introspection.cxx +++ b/stoc/source/inspect/introspection.cxx @@ -1588,7 +1588,7 @@ public: (*iter).second->release(); (*iter).second = NULL; - iter++; + ++iter; } } }; @@ -1686,7 +1686,7 @@ public: { (*iter).second->release(); (*iter).second = NULL; - iter++; + ++iter; } } }; |