]> Dogcows Code - chaz/yoink/blobdiff - src/Moof/Animation.cc
revamped scene drawing in preparation for octree
[chaz/yoink] / src / Moof / Animation.cc
index 3c418f7052027b17f32bb3305e821563be151667..38ffa6c9c5e5c8ca9fdb83806e46f731d9bd274b 100644 (file)
@@ -83,7 +83,7 @@ struct Animation::AnimationImpl
                                {
                                        std::map<std::string,SerializablePtr>::iterator it;
 
-                                       for (it = rootObj.begin(); it != rootObj.end(); it++)
+                                       for (it = rootObj.begin(); it != rootObj.end(); ++it)
                                        {
                                                std::string key = (*it).first;
                                                if (key == "index")
@@ -132,7 +132,7 @@ struct Animation::AnimationImpl
                                if (root->get(rootObj))
                                {
                                        std::map<std::string,SerializablePtr>::iterator it;
-                                       for (it = rootObj.begin(); it != rootObj.end(); it++)
+                                       for (it = rootObj.begin(); it != rootObj.end(); ++it)
                                        {
                                                std::string key = (*it).first;
 
@@ -145,7 +145,7 @@ struct Animation::AnimationImpl
                                                                std::vector<SerializablePtr>::iterator jt;
 
                                                                for (jt = framesObj.begin();
-                                                                               jt != framesObj.end(); jt++)
+                                                                               jt != framesObj.end(); ++jt)
                                                                {
                                                                        if (*jt)
                                                                        {
@@ -196,7 +196,7 @@ struct Animation::AnimationImpl
                                {
                                        std::map<std::string,SerializablePtr>::iterator it;
 
-                                       for (it = rootObj.begin(); it != rootObj.end(); it++)
+                                       for (it = rootObj.begin(); it != rootObj.end(); ++it)
                                        {
                                                sequences.insert(std::pair<std::string,Sequence>((*it).first,
                                                                        Sequence((*it).second)));
This page took 0.017359 seconds and 4 git commands to generate.