summaryrefslogtreecommitdiffstats
path: root/scene/main/node.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-14 18:03:38 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-16 08:49:52 +0100
commitf44ee891beaad397481dd88da41cb80e6539774f (patch)
tree82ce10e73d3b1da6229618ce93222ee49e34841b /scene/main/node.cpp
parente2a3f06f3d0c49d87b86c12407d69174b58ae448 (diff)
downloadredot-engine-f44ee891beaad397481dd88da41cb80e6539774f.tar.gz
Style: Fix statements ending with ';;'
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r--scene/main/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index aba8afd727..039dce37de 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -1631,7 +1631,7 @@ Node *Node::_get_node(const NodePath& p_path) const {
current=const_cast<Node*>(this); //start from this
} else {
- root=const_cast<Node*>(this);;
+ root=const_cast<Node*>(this);
while (root->data.parent)
root=root->data.parent; //start from root
}