aboutsummaryrefslogtreecommitdiff
path: root/source/Irrlicht/CBoneSceneNode.cpp
diff options
context:
space:
mode:
authorparadust7 <102263465+paradust7@users.noreply.github.com>2022-05-21 15:00:32 -0700
committerGitHub <noreply@github.com>2022-05-22 00:00:32 +0200
commit128cf1696c2803e12ebbdd3ee034e0c9eea90fae (patch)
tree1b9243ae45c0356a61981243fcb9d428b1ceba34 /source/Irrlicht/CBoneSceneNode.cpp
parent3e81f3809806a921a7914f6b9c4b02c8532fbc9f (diff)
downloadirrlicht-128cf1696c2803e12ebbdd3ee034e0c9eea90fae.tar.xz
Remove core::list and replace uses with std::list (#105)
Diffstat (limited to 'source/Irrlicht/CBoneSceneNode.cpp')
-rw-r--r--source/Irrlicht/CBoneSceneNode.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Irrlicht/CBoneSceneNode.cpp b/source/Irrlicht/CBoneSceneNode.cpp
index ccce982..04ef8c7 100644
--- a/source/Irrlicht/CBoneSceneNode.cpp
+++ b/source/Irrlicht/CBoneSceneNode.cpp
@@ -71,7 +71,7 @@ void CBoneSceneNode::OnAnimate(u32 timeMs)
//updateAbsolutePosition();
// perform the post render process on all children
- ISceneNodeList::Iterator it = Children.begin();
+ ISceneNodeList::iterator it = Children.begin();
for (; it != Children.end(); ++it)
(*it)->OnAnimate(timeMs);
}
@@ -82,7 +82,7 @@ void CBoneSceneNode::helper_updateAbsolutePositionOfAllChildren(ISceneNode *Node
{
Node->updateAbsolutePosition();
- ISceneNodeList::ConstIterator it = Node->getChildren().begin();
+ ISceneNodeList::const_iterator it = Node->getChildren().begin();
for (; it != Node->getChildren().end(); ++it)
{
helper_updateAbsolutePositionOfAllChildren( (*it) );