Index: OpenSceneGraph/trunk/src/osgAnimation/AnimationManagerBase.cpp
===================================================================
--- OpenSceneGraph/trunk/src/osgAnimation/AnimationManagerBase.cpp (revision 10656)
+++ OpenSceneGraph/trunk/src/osgAnimation/AnimationManagerBase.cpp (revision 11009)
@@ -29,5 +29,5 @@
 void AnimationManagerBase::clearTargets()
 {
-    for (TargetSet::iterator it = _targets.begin(); it != _targets.end(); it++)
+    for (TargetSet::iterator it = _targets.begin(); it != _targets.end(); ++it)
         (*it).get()->reset();
 }
@@ -68,5 +68,5 @@
     for (AnimationList::const_iterator it = animationList.begin();
          it != animationList.end();
-         it++)
+         ++it)
     {
         Animation* animation = dynamic_cast<osgAnimation::Animation*>(it->get()->clone(copyop));
@@ -86,5 +86,5 @@
         for (ChannelList::iterator it = anim->getChannels().begin();
              it != anim->getChannels().end();
-             it++)
+             ++it)
             _targets.insert((*it)->getTarget());
     }
