X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMoof%2FAnimation.cc;h=38ffa6c9c5e5c8ca9fdb83806e46f731d9bd274b;hp=3c418f7052027b17f32bb3305e821563be151667;hb=493ddb59a8620b49dfa0ff62ce93395ebfd02e86;hpb=bc5448947f45c0ba4d22b5ad736b7c545d8ec075 diff --git a/src/Moof/Animation.cc b/src/Moof/Animation.cc index 3c418f7..38ffa6c 100644 --- a/src/Moof/Animation.cc +++ b/src/Moof/Animation.cc @@ -83,7 +83,7 @@ struct Animation::AnimationImpl { std::map::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::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::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::iterator it; - for (it = rootObj.begin(); it != rootObj.end(); it++) + for (it = rootObj.begin(); it != rootObj.end(); ++it) { sequences.insert(std::pair((*it).first, Sequence((*it).second)));